MCP Catalogs
Home

MCPNotes vs everything

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

MCPNotes
by 9Ninety
everything
by modelcontextprotocol
Stars★ 36★ 85,748
30d uses
Score3877
Official
Categories
AI / LLM ToolsProductivityDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit13 mo agothis month

MCPNotes · Summary

A dual-server MCP system for AI-powered note-taking with web interface and DynamoDB storage.

everything · Summary

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

MCPNotes · Use cases

  • Personal knowledge management with AI assistance
  • Meeting documentation and action item tracking
  • Research note organization and synthesis

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

MCPNotes · Install

Installation

**Recommended:** Run directly with npx or bunx

**Alternative:**

  1. Clone this repository
  2. Install dependencies with npm install

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-notes": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "mcp-notes",
        "mcp-notes-server",
        "--dynamodb",
        "dynamodb://<access_key>:<secret_key>@<region>/<table>"
      ]
    }
  }
}

Web Server

npx -p mcp-notes mcp-notes-web-server --dynamodb "dynamodb://<access_key>:<secret_key>@<region>/<table>"

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
Comparison generated from public README + GitHub signals. Last updated automatically.