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

# World Docs MCP

> Search World documentation from your AI coding assistant.

The World Docs MCP gives your AI assistant direct access to World documentation through the [Model Context Protocol](https://modelcontextprotocol.io/).

Use it when you want Claude, Codex, Cursor, VS Code, or another MCP client to search current World docs while you build.

## Endpoint

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

The docs MCP does not require authentication.

## Connect your client

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

  <Tab title="Codex">
    ```bash theme={null}
    codex mcp add world-docs -- npx -y mcp-remote https://docs.world.org/mcp --transport http-only
    ```
  </Tab>

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

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

  <Tab title="VS Code">
    Add this to `.vscode/mcp.json`:

    ```json theme={null}
    {
      "servers": {
        "world-docs": {
          "type": "http",
          "url": "https://docs.world.org/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>

## Available tools

| Tool                         | Purpose                                                                |
| ---------------------------- | ---------------------------------------------------------------------- |
| `search_world_documentation` | Search and retrieve relevant World documentation for the current task. |

## Suggested prompts

```text theme={null}
Use the World Docs MCP to find the current MiniKit install steps and add them to this project.
```

```text theme={null}
Search the World docs for World ID verification and explain which endpoint this app should call.
```

## When to use it

Use the docs MCP for read-only documentation lookup. To create or configure apps in the developer portal, use the [Developer Portal MCP](/model-context-protocol/developer-portal).
