MCP Catalogs
Home

everything vs agenite

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
agenite
by subeshb1
Stars★ 85,748★ 69
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsOther
LanguageTypeScriptMDX
Last committhis month8 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

agenite · Summary

Agenite is a TypeScript framework for building AI agents with MCP support for connecting to 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

agenite · Use cases

  • Building AI assistants with specialized tool capabilities
  • Creating multi-agent systems for complex problem solving
  • Developing type-safe agent applications with various LLM providers

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

agenite · Install

Install the MCP package as part of the Agenite framework:

npm install @agenite/agent @agenite/tool @agenite/llm @agenite/mcp
npm install @agenite/openai # or other provider

For Claude Desktop integration, add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "agenite": {
      "command": "npx",
      "args": ["@agenite/mcp"],
      "env": {}
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.