MCP Catalogs
Home

everything vs astro-mcp

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

everything
by modelcontextprotocol
astro-mcp
by morinokami
Stars★ 85,748★ 58
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsWeb Scraping
LanguageTypeScriptAstro
Last committhis month1 mo ago

everything · Summary

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

astro-mcp · Summary

MCP server providing Astro project insights, runtime info, documentation search, and integration data.

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

astro-mcp · Use cases

  • Assist developers in debugging Astro applications by providing runtime configuration and route information
  • Enable AI assistants to provide up-to-date guidance based on the official Astro documentation
  • Automate development workflows by accessing integration details and server status programmatically

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

astro-mcp · Install

npx astro add astro-mcp

For manual installation:

npm install astro-mcp

Then add to your Astro config:

import { defineConfig } from "astro/config";
import mcp from "astro-mcp";

export default defineConfig({
  integrations: [mcp()],
});

The MCP server will be available at http://localhost:4321/__mcp/sse. Create an empty configuration file for your editor:

  • VSCode: .vscode/mcp.json
  • Cursor: .cursor/mcp.json
  • Windsurf: ~/.codeium/windsurf/mcp_config.json
  • Claude Code: .mcp.json
Comparison generated from public README + GitHub signals. Last updated automatically.