langchain-mcp-tools-py vs everything
Side-by-side comparison to help you pick between these two MCP servers.
langchain-mcp-tools-py by hideya | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything