MCP Catalogs
Home

getnote-mcp vs everything

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

getnote-mcp
by iswalle
everything
by modelcontextprotocol
Stars★ 61★ 85,748
30d uses
Score4877
Official
Categories
ProductivityKnowledge GraphAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last committhis monththis month

getnote-mcp · Summary

MCP server for GetNote, a personal note management tool, enabling AI to create, edit, search and organize notes.

everything · Summary

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

getnote-mcp · Use cases

  • AI assistants helping users capture and organize thoughts through voice commands like 'save this note' or 'search for previous notes about X'
  • Automating knowledge management by having AI process external content (blogs, live streams) and store it in organized knowledge bases
  • Implementing time tracking systems using note internal links to automatically connect daily logs with project notes

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

getnote-mcp · Install

Installation

# Direct execution (recommended, no cloning needed)
npx @getnote/mcp

# Or global installation
npm install -g @getnote/mcp

Claude Desktop Configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "getnote": {
      "command": "node",
      "args": ["/path/to/getnote-mcp/dist/index.js"],
      "env": {
        "GETNOTE_API_KEY": "your_api_key_here",
        "GETNOTE_CLIENT_ID": "your_client_id_here"
      }
    }
  }
}

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.