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:

  1. API Key: Contact your Euno administrator to obtain an API key for MCP access

  2. Account ID: Your Euno account identifier (available in your Euno account settings)

Configuration by Platform

Claude Desktop (Pro, Max, Teams and Enterprise)

  1. Open Claude Desktop Settings

  2. Navigate to Connectors

  3. Click "Add custom connector" in the bottom of the screen

  4. 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.

  5. Restart Claude. You will need to go through the authentication flow the first time you use the tool.

Cursor

  1. Access MCP Settings

    • Open Cursor settings

    • Navigate to Tools & Integrations section

    • Click "New MCP server"

  2. 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.

  3. Restart Cursor

Last updated