Multi-Model Agent Testing with LLM Comparison
Configure the connection to your MCP (Model Context Protocol) server. The server should be running before using the Kitium Agent Playground.
Default: http://localhost:3000
This tool supports the Model Context Protocol (MCP) specification. Your MCP server should expose the following endpoints:
GET /agentsReturns list of available agents with their schemas and metadata
POST /agents/:name/executeExecute an agent with input data and metadata (model, provider, etc.)
GET /providersReturns available providers and their models with pricing information
{
"agentName": "reasoning-agent",
"input": {
"question": "What is the capital of France?"
},
"metadata": {
"model": "claude-sonnet-4-5-20250929",
"provider": "claude"
}
}💡 Tip: Make sure your MCP server is running before using the playground. The server connection status is shown in the header.