mcpadapt vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcpadapt by grll | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 420 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 7 mo ago | this month |
mcpadapt · Summary
MCPAdapt bridges 650+ MCP servers to various agentic frameworks like LangChain and SmolAgents.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcpadapt · Use cases
- Integrating MCP server tools into LangChain-based AI applications
- Adding file system capabilities to SmolAgents agents
- Enabling GitHub API access in CrewAI workflows
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
mcpadapt · Install
# For Smolagents
uv add smolagents[mcp]
# For LangChain
uv add mcpadapt[langchain]
# For multiple frameworks
uv add mcpadapt[langchain,crewAI]
# Or with pip
pip install mcpadapt[langchain]For Claude Desktop, add to your config.json:
{
"mcpServers": {
"mcpadapt": {
"command": "uv",
"args": ["run", "mcpadapt"]
}
}
}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