packages/cloud-frontend/content/api/mcps.mdx
import { Callout, Tabs } from "@/docs/components";
Manage Model Context Protocol (MCP) servers for your agents.
Get all your MCP configurations.
{
"mcps": [
{
"id": "mcp_abc123",
"name": "Weather Tool",
"type": "stdio",
"status": "active",
"tools": ["get_weather", "get_forecast"]
}
]
}
Add a new MCP server.
{
"name": "Custom Tool Server",
"type": "http",
"config": {
"url": "https://my-mcp-server.example.com",
"transport": "sse"
}
}
Get MCP details and available tools.
{
"id": "mcp_abc123",
"name": "Weather Tool",
"type": "http",
"status": "active",
"tools": [
{
"name": "get_weather",
"description": "Get current weather for a location",
"parameters": {
"location": "string"
}
}
]
}
Update MCP configuration.
Remove an MCP server.
Publish MCP to the registry.
Browse available MCPs in the registry.
{
"mcps": [
{
"id": "weather",
"name": "Weather MCP",
"description": "Get weather data",
"author": "elizaOS",
"downloads": 1500
}
]
}
Pre-configured demo MCPs for testing:
| MCP | Endpoint | Description |
|---|---|---|
| Weather | /api/mcps/weather | Weather data |
| Time | /api/mcps/time | Time zones |
| Crypto | /api/mcps/crypto | Crypto prices |