KappaML MCP Server
Exposes the KappaML API as tools for AI assistants, enabling user management, model operations, predictions, learning, forecasting, metrics, and checkpoint management.
README
KappaML MCP Server
Remote MCP server that exposes the KappaML API as tools for AI assistants like Claude Desktop and Claude Code.
Tools (21)
| Category | Tools |
|---|---|
| Users | get_user_profile, update_user_profile |
| API Keys | create_api_key, list_api_keys, delete_api_key |
| Models | list_models, create_model, get_model, delete_model |
| Predict | predict, predict_batch |
| Learn | learn, learn_batch |
| Forecast | forecast |
| Metrics | get_metrics, get_metrics_history |
| Checkpoints | list_checkpoints, create_checkpoint, get_checkpoint, delete_checkpoint, restore_checkpoint |
Setup
Install locally
cd kappaml-mcp
pip install -e .
Run the server
# Option 1: Set API key via environment variable (single-tenant)
export KAPPAML_API_KEY=sk.xxx
python server.py
# Option 2: Clients send their own key via Authorization header (multi-tenant)
python server.py
The server starts on http://0.0.0.0:8000.
Docker
docker build -t kappaml-mcp .
docker run -p 8000:8000 -e KAPPAML_API_KEY=sk.xxx kappaml-mcp
Client Configuration
Claude Code
claude mcp add --transport http kappaml http://localhost:8000/mcp \
--header "Authorization: Bearer sk.xxx"
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"kappaml": {
"url": "http://localhost:8000/mcp",
"headers": {
"Authorization": "Bearer sk.xxx"
}
}
}
}
Authentication
The server extracts the API key from the Authorization: Bearer <key> header sent by the MCP client and forwards it as X-API-Key to the KappaML API. If no header is present, it falls back to the KAPPAML_API_KEY environment variable.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.