MCP Setup Guide
The Euno AI Assistant can be integrated with your preferred AI coding assistant (Claude Desktop, Cursor, VSCode Copilot, etc.) using the Model Context Protocol (MCP). This allows you to query your data model directly from within your development environment.
Prerequisites
Before setting up the MCP integration, you'll need:
API Key: Contact your Euno administrator to obtain an API key for MCP access
Account ID: Your Euno account identifier (available in your Euno account settings)
Configuration by Platform
Claude Desktop (Pro, Max, Teams and Enterprise)
Open Claude Desktop Settings
Navigate to Connectors
Click "Add custom connector" in the bottom of the screen
Give this tool a name (i.e "euno"). In the URL, enter:
https://mcp.app.euno.ai/mcp?account_id=<ACCOUNT_ID>&api_token=<API_TOKEN>
. Replace <ACCOUNT_ID> and <API_TOKEN> with your specific details.Restart Claude. You will need to go through the authentication flow the first time you use the tool.
Cursor
Access MCP Settings
Open Cursor settings
Navigate to Tools & Integrations section
Click "New MCP server"
Configure MCP Server In the
mcp.json
file that opens, add:{ "mcpServers": { "euno-assistant": { "type": "http", "url": "https://mcp.app.euno.ai/mcp", "headers": { "x-api-key": <API_TOKEN>, "x-account-id": <ACCOUNT_ID> } } }
Make sure to replace <ACCOUNT_ID> and <API_TOKEN> with your specific details.
Restart Cursor
Last updated