MCP Catalogs
Home

mcp-ayd-server vs everything

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

mcp-ayd-server
by macrat
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score2777
Official
Categories
MonitoringDeveloper ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit17 mo agothis month

mcp-ayd-server · Summary

MCP server for monitoring Ayd status checks via the Model Context Protocol.

everything · Summary

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

mcp-ayd-server · Use cases

  • AI assistants can query Ayd status checks through natural language
  • Automated status reporting for monitored services
  • Integration of monitoring data into AI-powered workflows

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

mcp-ayd-server · Install

Installation

  1. Download the latest binary from the [release page](https://github.com/macrat/mcp-ayd-server/releases).
  1. Setup your client's configuration file.

For example, if you use Claude Desktop:

{
  "mcpServers": {
    "ayd": {
      "command": "C:\\path\\to\\mcp-ayd-server.exe",
      "args": ["http://127.0.0.1:9000"]
    }
  }
}
  1. Run the client app.
  1. Ask assistant like "What's the latest status of Ayd?"

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.