> ## Documentation Index
> Fetch the complete documentation index at: https://tfh-docs-audit-mcp-content-fixes.mintlify.site/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={"system"}
https://docs.world.org/mcp
```

The docs MCP does not require authentication.

## Connect your client

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

  <Tab title="Codex">
    ```bash theme={"system"}
    codex mcp add world-docs --url https://docs.world.org/mcp
    ```
  </Tab>

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

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

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

    ```json theme={"system"}
    {
      "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.                                                                                                                                                                                   |
| `query_docs_filesystem_world_documentation` | Run shell-like queries (`rg`, `grep`, `find`, `tree`, `ls`, `cat`, `head`, `tail`, `stat`, `wc`, `sort`, `uniq`, `cut`, `sed`, `awk`, `jq`) over the full docs corpus, including OpenAPI specs, to read a full page or spec instead of a search snippet. |
| `submit_feedback`                           | Submit feedback about the documentation to the World docs team.                                                                                                                                                                                          |

## Suggested prompts

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

```text theme={"system"}
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 documentation lookup and filesystem-style queries over the docs corpus (read-only except for `submit_feedback`). To create or configure apps in the developer portal, use the [Developer Portal MCP](/model-context-protocol/developer-portal).
