> ## Documentation Index
> Fetch the complete documentation index at: https://docs.circuit.org/llms.txt
> Use this file to discover all available pages before exploring further.

# SDK Context

> Full context for AI coding assistants building Circuit agents - copy into your project's AGENTS.md or paste directly into your assistant's context window.

## MCP Server

Connect your AI coding assistant to the Circuit documentation via MCP:

```text theme={null}
https://docs.circuit.org/mcp
```

<Tabs>
  <Tab title="Claude Code">
    ```bash theme={null}
    claude mcp add circuit --transport http https://docs.circuit.org/mcp
    ```
  </Tab>

  <Tab title="Cursor">
    Add to `.cursor/mcp.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "circuit": {
          "url": "https://docs.circuit.org/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>

This gives your assistant a `SearchCircuit` tool to look up SDK references, examples, and guides on demand.

Alternatively, copy the full SDK context into your project's `AGENTS.md` or paste it directly into your assistant's context window:

* [Full SDK Context](../../AGENTSmd-CLI-SDK-BUILD-humanwrittencontext) - complete AGENTS.md content used by the CLI

Or browse individual SDK Reference pages in the sidebar for topic-specific documentation.
