Skip to main content
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely access external tools and data. llm.kiwi provides a hosted MCP server to seamlessly integrate our capabilities into your favorite AI environments.

Connection Details

Our MCP server is available at the following endpoint:
https://api.llm.kiwi/mcp

Available Tools

The MCP server exposes several tools that AI agents can use to perform complex tasks.
Generate text using llm.kiwi chat models.
  • Parameters: messages (array), model (optional string), temperature (optional number)
Generate images from text descriptions.
  • Parameters: prompt (string), size (optional string)
Transcribe audio files from a URL.
  • Parameters: file_url (string), language (optional string)

Resources

Agents can also access static and dynamic resources via the following URIs:
  • models://list: A list of available models and their descriptions.
  • docs://api: Comprehensive API documentation in Markdown format.
  • usage://current: Real-time usage statistics for your API key.

Installation Examples

Cursor

Add to your .cursor/mcp.json:
{
  "mcpServers": {
    "llm-kiwi": {
      "url": "https://api.llm.kiwi/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Claude Desktop

Add to your claude_desktop_config.json:
{
  "mcpServers": {
    "llm-kiwi": {
      "command": "npx",
      "args": ["-y", "@llm-kiwi/mcp-server"],
      "env": {
        "LLM_KIWI_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Security

The MCP server uses the same API keys as the REST API. Ensure your keys are kept secure and never shared.