MCP Catalogs
Home

langchain-mcp-tools-py vs filesystem

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

langchain-mcp-tools-py
by hideya
filesystem
by modelcontextprotocol
Stars★ 28★ 85,748
30d uses
Score4477
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit2 mo agothis month

langchain-mcp-tools-py · Summary

Python utility converting MCP server tools into LangChain-compatible tools with support for local and remote servers.

filesystem · Summary

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

langchain-mcp-tools-py · Use cases

  • Integrating MCP tools into LangChain agents
  • Working with local MCP servers using Python
  • Connecting to remote MCP servers via HTTP/WebSocket

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

langchain-mcp-tools-py · Install

pip install langchain-mcp-tools

Claude Desktop Configuration

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
    },
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}

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.