Coval MCP Server
OfficialThe Coval MCP Server integrates Coval's AI evaluation platform into MCP clients, enabling you to manage and run evaluations of AI agents.
Evaluation Runs
List, get, and create evaluation runs — launch evaluations by combining an agent, persona, and test set, with options for tags, concurrency, and iteration count
Agents
List, get, create, and update AI agents (VOICE, OUTBOUND_VOICE, SMS, WEBSOCKET, CHAT) with configuration details like endpoints, phone numbers, and prompts
Test Sets & Test Cases
List, get, and create test sets (collections of test scenarios)
List, get, create, and update individual test cases, including single-turn or multi-turn conversations, expected behaviors, and metadata
Metrics
List available evaluation metrics and get detailed information about specific metrics
Personas
List and get simulated user personas used in evaluations, including voice, language, background sound, and behavior settings
Covi Delegation
Use
consult_covito ask read-only evaluation and analysis questions to Covi
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Coval MCP ServerShow my recent evaluation runs"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Coval MCP Server
The official Model Context Protocol server for Coval - the AI evaluation platform.
This MCP server allows AI assistants like Claude, ChatGPT, Codex, and Cursor to interact with Coval's evaluation APIs, enabling you to:
Launch and monitor evaluation runs
Manage AI agents and test sets
Retrieve evaluation metrics and results
Hosted connector
The hosted connector is the recommended way to use Coval from Claude, ChatGPT, and other remote MCP clients. It uses OAuth, so users sign in to Coval and select the organization the connector can access. No Coval API key is copied into the client.
Standard MCP endpoint: https://mcp.coval.dev/mcp
Claude hosted endpoint: https://mcp.coval.dev/claude/mcp
Claude
Open Customize > Connectors. Team and Enterprise owners add the connector first from Organization settings > Connectors.
Add a custom web connector using
https://mcp.coval.dev/claude/mcp.Select Connect, sign in to Coval, and choose the Coval organization to authorize.
Enable the connector in a conversation and ask Claude to use Coval or Sofia.
See Claude's remote MCP connector guide for current plan and administration requirements.
ChatGPT
Enable developer mode for your ChatGPT workspace account.
From Settings > Apps, create an app using
https://mcp.coval.dev/mcpand OAuth.Select Scan Tools, sign in to Coval, and choose the Coval organization to authorize.
Create the app, then enable it in a conversation.
See ChatGPT's MCP app guide for current plan and workspace requirements.
Codex
Use Codex 0.144.2 or newer. Current Codex Desktop releases include a compatible client. For the
CLI, update before connecting:
npm install -g @openai/codex@latest
codex mcp add coval --url https://mcp.coval.dev/mcpWhen the browser opens, sign in to Coval, select the organization Codex should access, and select Allow. Codex Desktop, the Codex CLI, and the IDE extension share MCP configuration on the same machine, so the connection is available across those clients after they restart.
In Codex Desktop, you can also add Coval from Settings > MCP servers as a Streamable HTTP
server using https://mcp.coval.dev/mcp, then select Authenticate.
If OAuth returns invalid_scope, first confirm codex --version is 0.144.2 or newer. Older
clients registered a dynamic OAuth client without all the scopes they requested during consent.
After updating, clear the stale registration and reconnect:
codex mcp logout coval
codex mcp remove coval
codex mcp add coval --url https://mcp.coval.dev/mcpNo API key, manual scope list, or oauth_resource override is required. See
Codex's MCP documentation for current client setup
details.
Related MCP server: Trustwise MCP Server
Local installation
npx @coval/mcp-serverUse the local stdio server for service accounts, automation, and clients that do not support remote OAuth.
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"coval": {
"command": "npx",
"args": ["-y", "@coval/mcp-server"],
"env": {
"COVAL_API_KEY": "your_api_key_here"
}
}
}
}Cursor
Add to .cursor/mcp.json in your project:
{
"mcpServers": {
"coval": {
"command": "npx",
"args": ["-y", "@coval/mcp-server"],
"env": {
"COVAL_API_KEY": "your_api_key_here"
}
}
}
}Get your API key from app.coval.dev/settings
Available Tools
Tool | Description |
| List all agents in your workspace |
| Get details of a specific agent |
| Create an agent configuration |
| Update an agent configuration |
| List evaluation runs |
| Get details of a specific run |
| Start a new evaluation run |
| List available test sets |
| Get test set details |
| Create a test set |
| List test cases in a test set |
| Get test case details |
| Add a test case to a test set |
| Update a test case |
| List evaluation metrics |
| Get metric details |
| List available personas |
| Get persona details |
| Delegate a read-only Coval evaluation question to Sofia |
Example Usage
Once connected, you can ask Claude things like:
"Show me my recent evaluation runs"
"List all my agents"
"Run an evaluation of my customer-support-agent against the billing-inquiries test set"
"What are the metrics for run abc123?"
"Use
consult_sofiato analyze my latest failed run and recommend the most useful next test."
The same tools, including consult_sofia, are available through every supported endpoint and
transport:
Standard remote Streamable HTTP:
https://mcp.coval.dev/mcpusing OAuth. This is the recommended connection for ChatGPT, Codex, and other hosted MCP clients.Claude remote Streamable HTTP:
https://mcp.coval.dev/claude/mcpusing the same OAuth flow and tool surface, with Claude-specific risk annotations.Local stdio:
npx @coval/mcp-serverwithCOVAL_API_KEY, for service accounts and local development.
The hosted connector can access only the Coval organization selected during OAuth consent. Remove the connector from the client or revoke its Coval access when it is no longer needed.
Development
# Install dependencies
npm install
# Build
npm run build
# Test locally with MCP Inspector
npm run inspector
# Run tests
npm test
# Check the public health and OAuth discovery endpoints
npm run check:remoteEnvironment Variables
Variable | Required | Default | Description |
| Stdio | - | Coval API key for the local stdio transport |
| No |
| API base URL |
| No | Derived from | Overrides the expected Sofia origin used to validate delegation URLs |
| No |
| Logging level |
| No | Claude and OpenAI web origins | Comma-separated exact browser origins allowed to call |
| No | - | OpenAI plugin-portal domain verification token served as plain text from |
Documentation
License
MIT
Support
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/coval-ai/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server