Kagi MCP Server

Researchstdiohttp-streaming
Repository

Official MCP server backed by the Kagi API. Exposes Kagi's high-quality search and summarization tools to MCP-compatible clients, including web search and the Universal Summarizer for pages and videos. Useful for research workflows that want ad-free, privacy-respecting results with concise summaries. Requires a Kagi API key.

Connect

Add this configuration to .claude/mcp.json

Transport:
{
  "mcpServers": {
    "kagi": {
      "command": "uvx",
      "args": [
        "kagimcp"
      ],
      "env": {
        "KAGI_API_KEY": "<YOUR_KAGI_API_KEY>"
      }
    }
  }
}

Tools (2)

kagi_search_fetch

Search the web with Kagi and return ranked results with titles, URLs, and snippets.

{
  "type": "object",
  "required": [
    "queries"
  ],
  "properties": {
    "queries": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "One or more search queries"
    }
  }
}

kagi_summarizer

Summarize a web page or video URL using Kagi's Universal Summarizer.

{
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "description": "URL of the page or video to summarize"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Kagi Search (@kagisearch)
Repository
https://github.com/kagisearch/kagimcp
Stars
0
Last Updated
July 12, 2026