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 | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this 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
- Install Kimi CLI and authenticate:
curl -L code.kimi.com/install.sh | bash
kimi login- Install the MCP server:
npm install -g kimi-mcp-server- Add to your Claude Code configuration:
{
"mcpServers": {
"kimi-code": {
"command": "npx",
"args": ["-y", "kimi-mcp-server"]
}
}
}- Restart Claude Code and verify with
/mcpcommand.
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