Join NEROChain Communities and stay tuned for more!
AI Resources

AI Resources

NERO Chain documentation is published in machine-readable form for AI agents, retrieval systems, and LLM-powered developer tools. Connect a coding agent to the NERO Docs MCP server or download the bundles directly.

All resources listed here are purely informational. They carry no embedded system prompts, no personas, and no tracking.

Connect via MCP

The NERO Docs MCP server exposes the full documentation over Model Context Protocol. Point your coding agent at it and ask natural-language questions — it will retrieve the relevant pages and API methods.

Endpoint: https://docs-mcp.nerochain.io

Claude Code (CLI)

Claude Code — add HTTP MCP server
claude mcp add --transport http nero-docs https://docs-mcp.nerochain.io

Claude Desktop

claude_desktop_config.json
{
"mcpServers": {
  "nero-docs": {
    "type": "http",
    "url": "https://docs-mcp.nerochain.io"
  }
}
}

Cursor

.cursor/mcp.json
{
"mcpServers": {
  "nero-docs": {
    "transport": "http",
    "url": "https://docs-mcp.nerochain.io"
  }
}
}

VS Code (GitHub Copilot Chat)

.vscode/mcp.json
{
"servers": {
  "nero-docs": {
    "type": "http",
    "url": "https://docs-mcp.nerochain.io"
  }
}
}

ChatGPT / OpenAI Apps SDK

HTTP connector
{
"name": "nero-docs",
"type": "mcp",
"server_url": "https://docs-mcp.nerochain.io"
}

Codex CLI

Codex CLI — add HTTP MCP server
codex mcp add nero-docs --transport http --url https://docs-mcp.nerochain.io

Download bundles

Prefer files to a connection? Every bundle is served with a correct Content-Type and CORS enabled.

Full site

FileContent~ Tokens
/llms.txtCurated markdown index of every page. Follows the llmstxt.org format.~6K
/llms-full.txtFull English corpus as plain markdown, one page per section.~120K
/llms-full-ja.txtFull Japanese corpus as plain markdown.~120K
/llms-full.jsonlOne JSON object per page: {url, locale, section, title, summary, markdown, tokens}. Easy to stream into embedding pipelines.~120K
/site-index.jsonLightweight metadata: URLs, titles, headings, summaries, token estimates.~25K
/sitemap.xmlStandard sitemap with hreflang pairs for EN/JA.

Section bundles

Each section is also available as its own llms.txt:

SectionEnglishJapanese
Getting StartedENJA
White Paper (Core Concepts)ENJA
Developer ToolsENJA
Cookbook (Tutorials)ENJA
Node ValidatorsENJA

OpenAPI & schemas

The Paymaster JSON-RPC API is published as an OpenAPI 3.1 spec:

Additional discovery surface:

Open in ChatGPT / Claude

Start a new conversation pre-loaded with the NERO docs corpus:

Transparency

  • No embedded system prompt or persona.
  • No tracking cookies or analytics on these artifacts (Access-Control-Allow-Origin: *).
  • Content is regenerated deterministically from the MDX source on every build, so what you read matches what ships to humans.
  • Source of truth: github.com/nerochain/Nero-docs.