> ## 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.

# Access the Docs in Context

> Connect the Code Storage docs directly to your CLI, IDE, or LLM context to reference our APIs wherever you work.

# 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`.

```bash theme={"theme":{"light":"github-light","dark":"min-dark"}}
claude mcp add --transport http code-storage https://code.storage/docs/mcp
```

Verify your connection:

```bash theme={"theme":{"light":"github-light","dark":"min-dark"}}
claude mcp list
```

`code-storage` should appear with status `✓ Connected`. Claude will search the docs automatically
when relevant. See the
[Claude Code MCP docs](https://code.claude.com/docs/en/mcp#what-you-can-do-with-mcp) for more.

## Cursor

Open the command palette (`Cmd+Shift+P`), search **Open MCP settings**, select **Add custom MCP**,
and add:

```json theme={"theme":{"light":"github-light","dark":"min-dark"}}
{
  "mcpServers": {
    "code-storage": {
      "url": "https://code.storage/docs/mcp"
    }
  }
}
```

See the [Cursor MCP docs](https://cursor.com/docs#installing-mcp-servers) for more.

## VS Code

Create a `.vscode/mcp.json` file in your project and add:

```json theme={"theme":{"light":"github-light","dark":"min-dark"}}
{
  "servers": {
    "code-storage": {
      "type": "http",
      "url": "https://code.storage/docs/mcp"
    }
  }
}
```

See the
[VS Code documentation](https://code.visualstudio.com/docs/copilot/customization/mcp-servers) for
more details.
