MCP Ayd Server
MCP (Model Context Protocol) Server for Ayd status monitoring service.
Overview
MCP Ayd Server is a server designed for monitoring the status of the Ayd service utilizing the Model Context Protocol (MCP).
To use MCP Ayd Server, download the latest binary from the release page, set up your client's configuration file, run the client app, and query the assistant for the latest Ayd status.
- Integration with Ayd for status monitoring - Configurable client setup for different environments - Simple command interface for querying status
- Monitoring real-time status of the Ayd service.
- Integrating with applications that require status updates.
- Simplifying status inquiries through commands.
Add to your AI client
Use these steps to connect MCP Ayd Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-ayd-server-macrat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-ayd-server-macrat"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-ayd-server-macrat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-ayd-server-macrat"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-ayd-server-macrat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-ayd-server-macrat"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-ayd-server-macrat": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-ayd-server-macrat"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-ayd-server-macrat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-ayd-server-macrat"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-ayd-server-macrat": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-ayd-server-macrat"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
MCP is a protocol that allows different applications to communicate and manage contexts effectively.
How do I configure the client for MCP Ayd Server?
You need to edit the configuration file to point to the MCP Ayd Server executable and specify the command arguments accordingly.
Is there an example configuration available?
Yes! An example configuration is provided in the documentation for setting up with Claude Desktop.