> For the complete documentation index, see [llms.txt](https://docs.bitte.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bitte.ai/agents/mcp.md).

# MCP

Plug Bitte agents into your apps using MCP

## Bitte MCP Proxy

**Convert any agent deployed on** [**Bitte**](https://bitte.ai) **into a fully-compliant** [**Model Context Protocol (MCP)**](https://github.com/vercel/mcp) **server.**

The **Bitte MCP Proxy** makes every agent on the Bitte platform accessible through standardized MCP endpoints. No configuration, no redeployments—just plug-and-play interoperability.

***

### 🚀 Features

* **Agent-to-MCP Conversion**\
  Every agent deployed on Bitte is instantly exposed as an MCP server via HTTP.
* **Seamless Integration**\
  No changes to your agent code. MCP clients can connect directly via a consistent interface.
* **Standard MCP Interface**\
  Agents expose standardized MCP fields:
  * `tools`
  * `resources`
  * `prompt`
  * `input_schema`, `output_schema`
  * and more...

***

### 🔗 Endpoint Format

```http
GET https://mcp.bitte.ai/mcp?agentId={YOUR_AGENT_ID}
```

Replace `{YOUR_AGENT_ID}` with the actual ID of the agent you deployed on Bitte.

If you want to find an agent ID go to <https://bitte.ai/agents> and then open the agent you want.

<figure><img src="https://74933262-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FB52AZELB8jl58pzYsH6O%2Fuploads%2FJC5MR4iW6fMSxsMmzkSU%2FCaptura%20de%20ecra%CC%83%202025-07-03%2C%20a%CC%80s%2017.09.03.png?alt=media&amp;token=d48e458b-2d4b-4194-8022-2413d5164de6" alt=""><figcaption><p>MCP link in the agent page</p></figcaption></figure>

***

### 🛠 Example

If your agent is deployed with ID `rhea-ai-eight.vercel.app`, you can call it directly:

```
https://mcp.bitte.ai/mcp?agentId=rhea-ai-eight.vercel.app
```

This returns the MCP server metadata and allows tool usage via standard MCP request formats.
