Skip to main content

AUVY MCP Server

Connect MCP-compatible assistants to AUVY without writing client code. Endpoint:
https://mcp.auvy.ai/mcp

Setup

  1. Create an API key at cortex.auvy.aiAdmin → API keys.
  2. Add to your MCP client config:
{
  "mcpServers": {
    "auvy": {
      "url": "https://mcp.auvy.ai/mcp",
      "headers": {
        "Authorization": "Bearer ak_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}
Client paths: Cursor → ~/.config/cursor/mcp.json · Claude Desktop → ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) Optional headers: X-Brain-Id (brain-scoped tools), X-MCP-Toolkit-Slug (toolkit selection). Auth: OAuth when your client supports it, or Bearer API key (above). Restart the client after saving config.

Tool families

The exact tool set depends on your workspace MCP toolkit (configure in the dashboard).
FamilyToolsUse for
Sessionget_sessionConfirm workspace/brain context
Discoverygrep, search, read, document_treeBrowse and search the catalog
Historygrep_history, read_historyPrior execution transcripts
Webweb_read, web_searchFetch URLs and search the web
Executiondelegate, connect_execute, receptor__{slug}Invoke neurons, Connect tools, fire triggers
Create / updatecreate_resource, create_asset, apply_patch, …Create and patch catalog resources

Example flows

Session context:
{ "tool": "get_session", "arguments": {} }
Search then read:
{ "tool": "search", "arguments": { "query": "neurons/support" } }
{ "tool": "read", "arguments": { "resource_id": "00000000-0000-0000-0000-000000000000" } }
Delegate to a neuron:
{
  "tool": "delegate",
  "arguments": {
    "path": "neurons/support-agent",
    "message": "Summarize open incidents"
  }
}
Connect integration tool:
{
  "tool": "connect_execute",
  "arguments": {
    "integration_id": "integration-uuid",
    "tool_name": "GMAIL_SEND_EMAIL",
    "tool_config": { "to": "user@example.com", "subject": "Update", "body": "Done." }
  }
}