kimi-code-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
kimi-code-mcp by howardpen9 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 49 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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.
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.