MCP Catalogs
Home

macrostrat-mcp vs everything

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

macrostrat-mcp
by blake365
everything
by modelcontextprotocol
Stars★ 7★ 85,748
30d uses
Score3877
Official
Categories
Knowledge GraphDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit9 mo agothis month

macrostrat-mcp · Summary

MCP server for accessing comprehensive geologic data through Macrostrat API.

everything · Summary

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

macrostrat-mcp · Use cases

  • Geological research and analysis for specific locations
  • Educational exploration of Earth's geological history
  • Professional geological data visualization and interpretation

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

macrostrat-mcp · Install

Installation

Via Smithery

npx -y @smithery/cli install @blake365/macrostrat-mcp --client claude

Manual Installation

  1. Clone the repository
  2. Run npm install to install dependencies
  3. Run npm run build to build the server

Claude Desktop Configuration

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):

{
    "mcpServers": {
        "macrostrat": {
            "command": "node",
            "args": [
                "/Full/Route/to/Folder/macrostrat/build/index.js"
            ]
        }
    }
}
  1. Restart Claude Desktop

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.