Skip to main content

Documentation Index

Fetch the complete documentation index at: https://code.storage/docs/llms.txt

Use this file to discover all available pages before exploring further.

MCP Server

The docs are searchable from inside your tools. Point any MCP-compatible client at the server below and the docs follow you into your editor, your terminal, wherever the work happens.
https://code.storage/docs/mcp
The search tool is invoked automatically — you don’t need to ask your tool to search the docs. Method names, endpoint paths, and parameter names return the most precise results.

Claude Code

Register the Code Storage MCP server in your local config. The --transport http flag tells Claude to use the Streamable HTTP transport, and code-storage is the name you’ll see in mcp list.
claude mcp add --transport http code-storage https://code.storage/docs/mcp
Verify your connection:
claude mcp list
code-storage should appear with status ✓ Connected. Claude will search the docs automatically when relevant. See the Claude Code MCP docs for more.

Cursor

Open the command palette (Cmd+Shift+P), search Open MCP settings, select Add custom MCP, and add:
{
  "mcpServers": {
    "code-storage": {
      "url": "https://code.storage/docs/mcp"
    }
  }
}
See the Cursor MCP docs for more.

VS Code

Create a .vscode/mcp.json file in your project and add:
{
  "servers": {
    "code-storage": {
      "type": "http",
      "url": "https://code.storage/docs/mcp"
    }
  }
}
See the VS Code documentation for more details.