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 mcp add --transport http nero-docs https://docs-mcp.nerochain.ioClaude Desktop
{
"mcpServers": {
"nero-docs": {
"type": "http",
"url": "https://docs-mcp.nerochain.io"
}
}
}Cursor
{
"mcpServers": {
"nero-docs": {
"transport": "http",
"url": "https://docs-mcp.nerochain.io"
}
}
}VS Code (GitHub Copilot Chat)
{
"servers": {
"nero-docs": {
"type": "http",
"url": "https://docs-mcp.nerochain.io"
}
}
}ChatGPT / OpenAI Apps SDK
{
"name": "nero-docs",
"type": "mcp",
"server_url": "https://docs-mcp.nerochain.io"
}Codex CLI
codex mcp add nero-docs --transport http --url https://docs-mcp.nerochain.ioDownload bundles
Prefer files to a connection? Every bundle is served with a correct Content-Type and CORS enabled.
Full site
| File | Content | ~ Tokens |
|---|---|---|
/llms.txt | Curated markdown index of every page. Follows the llmstxt.org format. | ~6K |
/llms-full.txt | Full English corpus as plain markdown, one page per section. | ~120K |
/llms-full-ja.txt | Full Japanese corpus as plain markdown. | ~120K |
/llms-full.jsonl | One JSON object per page: {url, locale, section, title, summary, markdown, tokens}. Easy to stream into embedding pipelines. | ~120K |
/site-index.json | Lightweight metadata: URLs, titles, headings, summaries, token estimates. | ~25K |
/sitemap.xml | Standard sitemap with hreflang pairs for EN/JA. | — |
Section bundles
Each section is also available as its own llms.txt:
| Section | English | Japanese |
|---|---|---|
| Getting Started | EN | JA |
| White Paper (Core Concepts) | EN | JA |
| Developer Tools | EN | JA |
| Cookbook (Tutorials) | EN | JA |
| Node Validators | EN | JA |
OpenAPI & schemas
The Paymaster JSON-RPC API is published as an OpenAPI 3.1 spec:
Additional discovery surface:
/.well-known/ai-plugin.json— OpenAI plugin manifest/.well-known/agent-card.json— A2A agent card/.well-known/agent-skills/index.json— skill catalog/.well-known/api-catalog— RFC 9727 linkset/.well-known/nero-docs.json— structured nav + artifact index
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.