volcano-agent-sdk vs everything
Side-by-side comparison to help you pick between these two MCP servers.
volcano-agent-sdk by Kong | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 392 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
volcano-agent-sdk · Summary
TypeScript SDK for building AI agents that combine LLM reasoning with MCP tools, supporting multiple providers and advanced patterns.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
volcano-agent-sdk · Use cases
- Building autonomous AI agents that can interact with external tools via MCP
- Creating multi-agent workflows where specialized agents collaborate under a coordinator
- Developing production-ready AI applications with built-in observability and error handling
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
volcano-agent-sdk · Install
npm install @volcano.dev/agentFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"volcano-agent": {
"command": "npx",
"args": ["@volcano.dev/agent", "server"]
}
}
}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