Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.kymaapi.com/llms.txt

Use this file to discover all available pages before exploring further.

What is MCP?

The Model Context Protocol (MCP) lets AI assistants like Claude Code and Cursor use external tools. Kyma’s MCP server exposes 13+ open-source models as tools.

Install

npm install -g @kyma-api/mcp-server
Or run directly with npx (no install needed):
npx @kyma-api/mcp-server

Claude Code

Add to ~/.claude/settings.json:
{
  "mcpServers": {
    "kyma": {
      "command": "npx",
      "args": ["@kyma-api/mcp-server"],
      "env": {
        "KYMA_API_KEY": "ky-your-api-key"
      }
    }
  }
}
Restart Claude Code. You can now use chat and list_models tools.

Cursor

Add to Cursor settings (Settings > MCP):
{
  "kyma": {
    "command": "npx",
    "args": ["@kyma-api/mcp-server"],
    "env": {
      "KYMA_API_KEY": "ky-your-api-key"
    }
  }
}

Available Tools

chat

Send a message to any Kyma model.
ParameterTypeRequiredDefault
messagestringYes
modelstringNoqwen-3.6-plus
systemstringNo

list_models

List all available models with their IDs. No parameters.

Example Usage

Once configured, ask your AI assistant:
  • “Use kyma chat to explain quantum computing with deepseek-r1”
  • “Use kyma list_models to see available models”
  • “Use kyma chat with model qwen-3-32b to review this function”
Get your free API key at kymaapi.com — includes $0.50 free credits.