agentor vs everything
Side-by-side comparison to help you pick between these two MCP servers.
agentor by CelestoAI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 180 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
agentor · Summary
Agentor is a comprehensive framework for building and deploying AI agents with MCP server capabilities, tools, and agent-to-agent communication.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
agentor · Use cases
- Building custom MCP servers with FastAPI compatibility
- Creating and deploying AI agents with specialized skills
- Implementing agent-to-agent communication protocols
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
agentor · Install
pip install agentorFor Claude Desktop integration, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"agentor": {
"command": "python",
"args": ["-m", "agentor.mcp"]
}
}
}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