MCP Catalogs
Home

everything vs observee

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

everything
by modelcontextprotocol
observee
by observee-ai
Stars★ 85,748★ 41
30d uses
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsCommunication
LanguageTypeScriptPython
Last committhis month9 mo ago

everything · Summary

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

observee · Summary

SDK for building AI agents with MCPs, featuring 1000+ integrations, OAuth management and observability tools.

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

observee · Use cases

  • Building AI agents that can access Gmail, Slack, and other services with proper authentication
  • Implementing tool calling for AI applications with pre-built MCP integrations
  • Monitoring and logging AI agent usage and performance in production environments

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

observee · Install

Installation

**TypeScript/JavaScript:**

# Install everything at once
npm install @observee/sdk

# Or install individual packages
npm install @observee/agents @observee/auth @observee/logger

**Python:**

# Install individual packages
pip install mcp-agents agent-oauth mcp-logger

# Or install all at once
pip install observee

**Claude Desktop Configuration:** Add to claude_desktop_config.json:

{
  "mcpServers": {
    "observee": {
      "command": "python",
      "args": ["-m", "observee_agents"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.