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 | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsWeb Scraping |
| Language | TypeScript | Astro |
| Last commit | this month | 1 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-everythingastro-mcp · Install
npx astro add astro-mcpFor manual installation:
npm install astro-mcpThen 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