MCP Catalogs
Home

mcp-servers-kagi vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-servers-kagi
by ac3xx
everything
by modelcontextprotocol
Stars★ 44★ 85,748
30d uses
Score3677
Official
Categories
SearchAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit17 mo agothis month

mcp-servers-kagi · Summary

A TypeScript MCP server that integrates with Kagi's Search API to provide web search capabilities.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-servers-kagi · Use cases

  • Enable AI assistants to perform web searches using Kagi's API
  • Provide real-time information retrieval capabilities for AI models
  • Serve as a foundation for extending Kagi's functionality in AI workflows

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-servers-kagi · Install

Installation

Via Smithery

npx @smithery/cli install kagi-server --client claude

Manual Installation

  1. Install dependencies:

``bash npm install ``

  1. Build the server:

``bash npm run build ``

  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "kagi-server": {
      "command": "/path/to/kagi-server/build/index.js",
      "env": {
        "KAGI_API_KEY": "your_api_key_here"
      }
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.