Setup MCP Server
Set up the Future AGI MCP Server to interact with the platform via natural language from Claude, Cursor, or VS Code using Model Context Protocol.
What is it?
The Future AGI MCP Server lets you interact with the entire Future AGI platform through natural language, directly from your AI coding environment. Instead of switching between the dashboard and your editor, you can run evaluations, upload datasets, generate synthetic data, and apply protection rules just by describing what you want in tools like Claude, Cursor, or VS Code. It’s built on the Model Context Protocol — a standard that connects AI models to external tools and services.
How it works
Install
Add the MCP server to your IDE using the config below.
Authorize
OAuth login opens in your browser automatically — no API keys needed.
Start using
Ask your AI assistant about your evaluations, traces, datasets, and more.
Connect Your IDE
All you need is this URL — authentication happens automatically via OAuth 2.0:
https://api.futureagi.com/mcp
{
"mcpServers": {
"futureagi": {
"url": "https://api.futureagi.com/mcp"
}
}
} claude mcp add futureagi --transport http https://api.futureagi.com/mcp
{
"mcp.servers": {
"futureagi": {
"type": "http",
"url": "https://api.futureagi.com/mcp"
}
}
} {
"mcpServers": {
"futureagi": {
"url": "https://api.futureagi.com/mcp"
}
}
} {
"mcpServers": {
"futureagi": {
"serverUrl": "https://api.futureagi.com/mcp"
}
}
} What You Can Do
With Future AGI’s MCP Server, you can use natural language to:
- Run automatic evaluations — Evaluate batch and single inputs on various evaluation metrics, both on local datapoints and large datasets
- Prototype and observe your agents — Add observability, evaluations while prototyping and deploying agents into production
- Manage datasets — Upload, evaluate, download datasets and find insights
- Add protection rules — Apply toxicity detection, prompt injection protection, and other guardrails automatically
- Generate synthetic data — Describe your dataset and objective to generate synthetic data
Check out our blog post on futureagi-mcp-server for detailed use cases.