MCP Catalogs
Home

kimi-code-mcp vs everything

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

kimi-code-mcp
by howardpen9
everything
by modelcontextprotocol
Stars★ 49★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

kimi-code-mcp · Summary

MCP server connecting Claude Code with Kimi K2.5 (256K context) to reduce token costs for codebase analysis.

everything · Summary

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

kimi-code-mcp · Use cases

  • Deep codebase architecture analysis using Kimi's 256K context window
  • Security auditing with AI pair review between Kimi and Claude
  • Cost-efficient dependency mapping and refactoring planning
  • Resumable code review sessions across development cycles

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

kimi-code-mcp · Install

Installation

  1. Install Kimi CLI and authenticate:
curl -L code.kimi.com/install.sh | bash
kimi login
  1. Install the MCP server:
npm install -g kimi-mcp-server
  1. Add to your Claude Code configuration:
{
  "mcpServers": {
    "kimi-code": {
      "command": "npx",
      "args": ["-y", "kimi-mcp-server"]
    }
  }
}
  1. Restart Claude Code and verify with /mcp command.

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.