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

# MCP

> Connect Saber's documentation directly to your AI tools and IDE to speed up integration.

The Saber MCP (Model Context Protocol) server connects your AI assistant or IDE directly to the Saber Money documentation, so you can ask integration questions as you build and get answers grounded in the actual, current docs — instead of relying on the model's own prior knowledge, which can be outdated or simply wrong about Saber's API.

<Info>
  MCP is an open protocol for connecting AI assistants to external tools and data sources. If your AI tool or IDE already supports MCP, connecting it to Saber takes just a server URL.
</Info>

## Connect

Add this URL to your MCP-compatible AI assistant or IDE:

```
https://mudrex-inc.mintlify.site/mcp
```

<Tabs>
  <Tab title="Claude">
    1. Go to [claude.ai/settings/connectors](https://claude.ai/settings/connectors).
    2. Click **Add custom connector**.
    3. Paste in the server URL above.
    4. Click **Add**, then start a new chat and ask a Saber integration question.
  </Tab>

  <Tab title="Claude Code">
    Run:

    ```bash theme={null}
    claude mcp add --transport http saber https://mudrex-inc.mintlify.site/mcp
    ```

    Verify it's connected:

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

  <Tab title="Cursor">
    1. Open **Cursor Settings → MCP**.
    2. Click **Add new global MCP server**.
    3. Add this to `mcp.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "saber": {
          "url": "https://mudrex-inc.mintlify.site/mcp"
        }
      }
    }
    ```
  </Tab>

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

    ```json theme={null}
    {
      "servers": {
        "saber": {
          "url": "https://mudrex-inc.mintlify.site/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="ChatGPT">
    1. Go to **Settings → Connectors**.
    2. Click **Add custom connector**.
    3. Paste in the server URL above.
    4. Save, then enable it for a chat.
  </Tab>
</Tabs>

## What it does

* **Search and retrieval** — searches and retrieves content from the published Saber Money documentation to answer your questions as you integrate.
* **Feedback reporting** — if it finds a page that's incorrect, outdated, confusing, or incomplete while helping you, it can report that back to the Saber docs team directly.

## What it doesn't do

The server is read-only and scoped strictly to the published Saber Money documentation:

* It does not perform actions or mutate any state in your Saber account — it can't create users, initiate transactions, or make any changes.
* It does not access private or authenticated account data unless your MCP session is specifically authenticated for that.
* Aside from reporting documentation feedback, it doesn't do anything beyond retrieving and answering from public site content.

## Why use it

* **Answers grounded in the current docs** — responses are based on what's actually published, not on the model's training data, which may be stale or incorrect for Saber specifically.
* **Cited, verifiable answers** — results reference the relevant documentation pages, so you can jump straight to the source.
* **Faster integration** — ask questions about a flow, field, or edge case directly inside your IDE or AI assistant while you're writing integration code, without switching tabs to search the docs manually.


## Related topics

- [Product Updates](/changelogs.md)
- [Using LLMs](/getting-started/using-llms.md)
