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 | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this 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-toolsClaude 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.