AUVY MCP Server
The hosted AUVY MCP server lets MCP-compatible assistants use AUVY resources and preconfigured integration tools without writing client code yourself.Hosted Endpoint
What You Can Do
OAuth + API Key
Connect with OAuth or an
Authorization: Bearer ak_live_... header.Browse And Read
Use tools like
grep, search, read, and get_session.Invoke Workflows
Use
invoke to run receptors from your assistant.MCP Apps
Some
read responses can render a receptor viewer in clients that support MCP Apps.Basic Configuration
Add the hosted endpoint to your MCP client:Setup
Prerequisites: An MCP-capable assistant (ChatGPT, Claude Desktop, Cursor) and an AUVY account. Add the hosted endpoint to your client:- Cursor:
~/.config/cursor/mcp.json - Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) or%APPDATA%/Claude/claude_desktop_config.json(Windows) - ChatGPT: Settings → Integrations → MCP Servers
get_session or list receptors) are available.
Troubleshooting: Connection failed → check URL https://mcp.auvy.ai/mcp and restart. Auth errors → ensure API key is valid or complete OAuth. Tools not available → confirm server in client list and auth completed.
Authentication
- OAuth 2.1 — best when your MCP client supports interactive sign-in. First tool call triggers auth; complete sign-in and consent.
- Bearer API key — always supported. Add to config:
"headers": { "Authorization": "Bearer ak_live_..." }. Optional:X-Brain-Idfor brain-scoped search/reads.
Common Tools
get_sessiongrep,search,read,catgrep_history,read_historyinvokeconnect_execute(run Connect integration tools)list_receptors,list_pathways,list_neurons,list_reflexeswrite,write_reflex,create_resource,store,editweb_read,web_search
connect_execute (integration_id, tool_name, tool_config). The live server is the source of truth for the tool list.
See the Tools Reference for practical usage patterns.
Next Steps
- Tools Reference - Tool families and usage patterns
- Examples - Usage examples
- Integration patterns - SDK streaming, pagination, error handling