everything vs aisdk-mcp-bridge
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | aisdk-mcp-bridge by vrknetha | |
|---|---|---|
| Stars | ★ 85,748 | ★ 23 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 16 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
aisdk-mcp-bridge · Summary
Bridge package connecting MCP servers with AI SDK tools, supporting multiple server types and real-time communication.
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
aisdk-mcp-bridge · Use cases
- Integrating MCP servers like Twitter or Firecrawl with AI models for enhanced capabilities
- Building AI applications that need to leverage multiple MCP tools simultaneously
- Creating real-time communication between AI models and MCP servers using SSE mode
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-everythingaisdk-mcp-bridge · Install
Installation:
npm install aisdk-mcp-bridgeFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"aisdk-mcp-bridge": {
"command": "node",
"args": ["path/to/your/project/node_modules/.bin/aisdk-mcp-bridge"]
}
}
}