neurolink vs everything
Side-by-side comparison to help you pick between these two MCP servers.
neurolink by juspay | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 90 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
neurolink · Summary
NeuroLink is a universal AI integration platform that unifies 21+ AI providers and 100+ models under one consistent API with MCP server support.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
neurolink · Use cases
- Building applications with multiple AI providers using a single consistent API
- Creating AI agents with memory, tool calling, and context window management
- Implementing real-time voice interactions with TTS/STT capabilities
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
neurolink · Install
npm install @juspay/neurolinkFor Claude Desktop integration, add to your config.json:
{
"mcpServers": {
"neurolink": {
"command": "node",
"args": ["-e", "require('@juspay/neurolink')"],
"env": {
"NEUROLINK_API_KEY": "your-api-key"
}
}
}
}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