MCP Catalogs
Home

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
Score4577
Official
Categories
Developer ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
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.

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

  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.

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.

Comparison generated from public README + GitHub signals. Last updated automatically.