langchain-mcp-tools-ts vs everything
Side-by-side comparison to help you pick between these two MCP servers.
langchain-mcp-tools-ts by hideya | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 23 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
langchain-mcp-tools-ts · Summary
A TypeScript utility to convert MCP server tools into LangChain-compatible tools with schema adjustments for LLM compatibility.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
langchain-mcp-tools-ts · Use cases
- Integrating MCP tools like filesystem, GitHub, or Brave search with LangChain agents
- Creating custom LangChain applications using MCP servers without implementing MCP protocol
- Developing proof-of-concepts for AI applications that need access to external data sources
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-ts · Install
Install with npm:
npm i @h1deya/langchain-mcp-toolsExample configuration for Claude Desktop (convert to MCP servers config):
{
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"]
}
}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