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

# Docs MCP Server

> Query WalletSuite docs from Claude, Cursor, VS Code, or any MCP client.

Search and read the docs from inside your development environment, no browser tab required.

## Connect to the MCP server

<Tabs>
  <Tab title="Claude">
    1. Go to [Connectors](https://claude.ai/settings/connectors) in Claude settings
    2. Select **Add custom connector**
    3. Add the server:
       * Name: `WalletSuite`
       * URL: `https://docs.walletsuite.io/mcp`
    4. Select **Add**

    In any chat, click the attachments button (plus icon) and select the WalletSuite connector, then ask your question.
  </Tab>

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

    Verify:

    ```bash theme={null}
    claude mcp list
    ```
  </Tab>

  <Tab title="Cursor">
    Open the command palette (`Cmd+Shift+P`), search "Open MCP settings", and add:

    ```json theme={null}
    {
      "mcpServers": {
        "WalletSuite": {
          "url": "https://docs.walletsuite.io/mcp"
        }
      }
    }
    ```

    Test by asking Cursor: "What tools do you have available?"
  </Tab>

  <Tab title="VS Code">
    Create `.vscode/mcp.json` in your project:

    ```json theme={null}
    {
      "servers": {
        "WalletSuite": {
          "type": "http",
          "url": "https://docs.walletsuite.io/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>

## Available tools

Connected AI clients get access to two tools:

| Tool                                 | What It Does                                                                                                                                                       |
| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `search_wallet_suite`                | Search across the WalletSuite knowledge base — docs, code examples, API references, guides                                                                         |
| `query_docs_filesystem_wallet_suite` | Read-only shell-like queries against a virtual filesystem of all docs pages. Supports `cat`, `head`, `rg`, `tree`, `ls`, `grep`, and other standard text utilities |

**Typical workflow:** Use `search_wallet_suite` for broad queries ("how do policy gates work"). Use `query_docs_filesystem_wallet_suite` to read specific pages by path (`head -80 /core-concepts/policy-gates`) or grep for exact terms (`rg -C 3 "tool profile" /`).

## LLM feed files

Two continuously updated files for ingesting WalletSuite docs into custom GPTs, RAG pipelines, or any LLM application:

| File            | URL                                                                            | Use Case                                                      |
| --------------- | ------------------------------------------------------------------------------ | ------------------------------------------------------------- |
| `llms.txt`      | [docs.walletsuite.io/llms.txt](https://docs.walletsuite.io/llms.txt)           | Concise page index — good for smaller models or quick context |
| `llms-full.txt` | [docs.walletsuite.io/llms-full.txt](https://docs.walletsuite.io/llms-full.txt) | Full content of all pages — ideal for complete indexing       |

Both files are auto-generated and always reflect the latest published docs.
