Kitium Logo

Kitium Agent Playground

Multi-Model Agent Testing with LLM Comparison

Settings

MCP Server Configuration

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

MCP Server Schema

This tool supports the Model Context Protocol (MCP) specification. Your MCP server should expose the following endpoints:

GET /agents

Returns list of available agents with their schemas and metadata

POST /agents/:name/execute

Execute an agent with input data and metadata (model, provider, etc.)

GET /providers

Returns available providers and their models with pricing information

Agent Execution Request Format:

{
  "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.