Overview
MCP Ayd Server is a server implementation for the Model Context Protocol (MCP) designed to work with the Ayd client, facilitating communication and data exchange.
To use MCP Ayd Server, download the latest binary from the release page, set up your client's configuration file, and run the client application to interact with the server.
- Implements the Model Context Protocol for seamless data exchange. - Easy setup with configuration file support. - Compatible with various client applications like Claude Desktop.
- Enabling communication between Ayd and other applications using MCP.
- Facilitating data retrieval and status updates from the Ayd assistant.
- Supporting developers in building applications that require context-aware interactions.
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": {
"macrat-mcp-ayd-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-ayd-server-mcp-mirror"
]
}
}
}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": {
"macrat-mcp-ayd-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-ayd-server-mcp-mirror"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"macrat-mcp-ayd-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-ayd-server-mcp-mirror"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"macrat-mcp-ayd-server-mcp-mirror": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-ayd-server-mcp-mirror"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"macrat-mcp-ayd-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-ayd-server-mcp-mirror"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"macrat-mcp-ayd-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-macrat-mcp-ayd-server-mcp-mirror"
]
}
}
}FAQ
What is the Model Context Protocol (MCP)?
MCP is a protocol designed to enable context-aware communication between applications.
Is MCP Ayd Server free to use?
Yes! MCP Ayd Server is open-source and free to use.
How do I configure the server?
You can configure the server by editing the client's configuration file to point to the server's executable.