AI tools
The Modelplane docs are built to be read by AI assistants as well as people. You can connect a coding agent directly to this site, pull any page as Markdown, or point a model at a single index file that lists the whole documentation set. Every page also carries a Copy page menu next to its title with the same shortcuts.
Connect to the MCP server
The documentation MCP server lets an assistant search these docs and read any page in real time, so its answers track the current content instead of its training data. It exposes two tools:
search_modelplane_docs: search the docs and get back the most relevant sections with their titles, URLs, and snippets.get_modelplane_doc: fetch the full Markdown of a single page.
The server URL is:
https://docs.modelplane.ai/mcpclaude mcp add --transport http modelplane-docs https://docs.modelplane.ai/mcpmodelplane-docs, enter the server URL above, and enable the connector when you start a conversation.Open the command palette, run Cursor Settings: MCP, and add a server to mcp.json:
{
"mcpServers": {
"modelplane-docs": {
"url": "https://docs.modelplane.ai/mcp"
}
}
}Create .vscode/mcp.json in your workspace:
{
"servers": {
"modelplane-docs": {
"type": "http",
"url": "https://docs.modelplane.ai/mcp"
}
}
}The Copy page menu on every page also has Connect to Cursor and Connect to VS Code shortcuts that install the server in one click.
Read pages as Markdown
Every page is also published as raw Markdown. Add index.md to any page URL:
https://docs.modelplane.ai/models/model-deployment/index.mdThe Copy page control next to each title copies that Markdown to your clipboard, and View as Markdown opens it in the browser. Paste it into any assistant when you want to ground a question in a specific page.
llms.txt
For tools that index a whole site, the docs publish the llms.txt format:
llms.txt: a short index of every page with links and descriptions.llms-full.txt: every page concatenated into one Markdown file.
Page menu reference
The Copy page menu next to each title has these actions:
| Action | What it does |
|---|---|
| Copy page | Copies the page as Markdown to your clipboard. |
| View as Markdown | Opens the page as raw Markdown. |
| Copy MCP Server | Copies the MCP server URL to your clipboard. |
| Connect to Cursor | Installs the MCP server in Cursor. |
| Connect to VS Code | Installs the MCP server in VS Code. |