# MCP server

> Connect this documentation to Claude, Cursor, VS Code or any MCP client. Read only, no API key.

Section: Platform
Source: https://statementbear.com/docs/mcp
Product: StatementBear statement parsing API, $0.49 per document, 25 free.

---

A remote MCP server that gives your coding assistant this documentation as it is published today.

`MCP https://statementbear.com/api/mcp`

## Connect it

Claude Code:

```bash
claude mcp add --transport http statementbear https://statementbear.com/api/mcp
```

Claude Desktop:

```json
{
  "mcpServers": {
    "statementbear": {
      "type": "http",
      "url": "https://statementbear.com/api/mcp"
    }
  }
}
```

Cursor:

```json
{
  "mcpServers": {
    "statementbear": {
      "url": "https://statementbear.com/api/mcp"
    }
  }
}
```

VS Code:

```json
{
  "servers": {
    "statementbear": {
      "type": "http",
      "url": "https://statementbear.com/api/mcp"
    }
  }
}
```

Claude Desktop keeps that JSON in `claude_desktop_config.json`, Cursor in `~/.cursor/mcp.json`, VS Code in `.vscode/mcp.json` beside the project. Any client that supports a remote MCP server works: it is one HTTP URL with no authentication and no session to manage.

## Tools

| Tool | What it does |
| --- | --- |
| `search_documentation` | Finds the pages and headings matching a question, with a summary of each. |
| `get_documentation_page` | Returns a whole page as Markdown, by path or slug. |
| `list_documentation_pages` | Every page, its section and its summary. |

Every page is also exposed as an MCP resource, for clients that attach documents instead of calling tools.

> **It cannot spend money**
>
> The server serves documentation. It cannot parse a statement, read your usage, issue a key or see anything about your account, so there is no credential to give it. Parsing stays an authenticated POST from your backend.

## Without MCP

Every page is served as Markdown at its own URL with a `.md` suffix. There is an index at [/docs/llms.txt](https://statementbear.com/docs/llms.txt) and the whole documentation in one file at [/docs/llms-full.txt](https://statementbear.com/docs/llms-full.txt). The **Copy page** button copies the Markdown of the page you are on.

---

All documentation: https://statementbear.com/docs/llms.txt
Questions: api@statementbear.com
