everything vs lc2mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | lc2mcp by xiaotonng | |
|---|---|---|
| Stars | ★ 85,748 | ★ 69 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 4 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
lc2mcp · Summary
A lightweight adapter that converts existing LangChain tools into FastMCP tools in one line of code.
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
lc2mcp · Use cases
- Converting existing LangChain tools to serve MCP clients like Claude and Cursor
- Building MCP servers quickly using LangChain's rich ecosystem of 1000+ community tools
- Injecting authentication and user context into tools through MCP context
- Handling tool name conflicts and organizing tools with prefixes
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-everythinglc2mcp · Install
pip install lc2mcpFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"lc2mcp-example": {
"command": "python",
"args": ["-m", "fastmcp", "run", "/path/to/your/script.py"]
}
}
}