MCP Catalogs
Home

mcp-tool-kit vs filesystem

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

mcp-tool-kit
by getfounded
filesystem
by modelcontextprotocol
Stars★ 107★ 85,748
30d uses
Score4477
Official
Categories
File SystemDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit10 mo agothis month

mcp-tool-kit · Summary

MCP Tool Kit provides a Python framework with 120+ tools for building vertical AI agents with automatic discovery.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

mcp-tool-kit · Use cases

  • Building specialized document analysis AI agents with PDF/Excel processing capabilities
  • Creating research assistants with web search and data analysis tools
  • Developing productivity tools with filesystem operations and time zone conversions

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

mcp-tool-kit · Install

Installation

Quick Install

Windows (PowerShell)

irm https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.ps1 | iex

macOS (Terminal)

bash <(curl -s https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.sh)

Linux (Terminal)

bash <(wget -qO- https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.sh)

Claude Desktop Configuration

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "mcp-tool-kit": {
      "command": "docker",
      "args": ["exec", "-i", "mcp-server", "python", "mcp_server_v2.py"]
    }
  }
}

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.