Read the Docs as an Agent
The Documentation Index: llms.txt
The site publishes an llms.txt index at:Per-Page Markdown
Every page is served as raw markdown at its own URL with.md appended.
For example, the Node Operator Overview page is available as:
.md form skips the HTML shell, navigation, and scripts, so an assistant gets exactly the content of the page in a fraction of the tokens.
Prefer it over the HTML URL whenever your tooling fetches pages programmatically.
The Contextual Menu
Every page in these docs has a contextual menu (next to the page title) with assistant-ready actions:- Copy page: copies the page as markdown, ready to paste into any chat.
- Open in ChatGPT: opens a ChatGPT conversation preloaded with the page.
- Open in Claude: opens a Claude conversation preloaded with the page.
- Copy MCP server URL: copies the hosted MCP server address for your client configuration.
Tips for Agents Reading These Docs
- Start from
llms.txtto map the site, then fetch only the.mdpages you need. - These docs describe how to use the OP Stack. The normative protocol definition lives in the OP Stack specifications - when a docs page and the specs disagree, the specs win.
- Configuration flags and versions change between releases. Confirm load-bearing values against the linked source or release notes before acting on them.
Connect the Hosted MCP Server
The Model Context Protocol (MCP) is an open standard for connecting AI assistants to external tools and data sources. These docs are hosted on Mintlify, which automatically generates and hosts an MCP server for the site. The server exposes a search tool over the documentation, so a connected assistant (Claude Code, Claude Desktop, Cursor, and others) can look up current OP Stack content instead of relying on stale training data.Option 1: The Hosted MCP Server (Recommended)
The docs MCP server is available over HTTP at:1
Add the server to your client
For Claude Code, run:For Cursor, Claude Desktop, and other clients that use a JSON configuration, add the server URL:You can also connect from any page of these docs: the contextual menu (next to the page title) includes an option to copy the MCP server details for your client.
2
Verify it works
Ask your assistant:A correctly wired assistant calls the server’s search tool, locates Building and Running an OP Stack Node From Source, and answers from the live page.
Option 2: Direct Fetching (No MCP Server Required)
If your assistant can fetch web pages but does not support MCP, no setup is needed. The site’s machine-readable surfaces - thellms.txt index and per-page markdown - work with any assistant that can fetch URLs.
Give it the index and the URL convention:
CLAUDE.md, .cursorrules, or a system prompt) and it will resolve OP Stack questions against the live docs.
If your tooling only reaches the network through MCP and cannot use the hosted server, the reference fetch server (uvx mcp-server-fetch) plus the instruction block above achieves the same result.
If the hosted MCP endpoint is not responding, open an issue so we can investigate.