πŸ”€MCP Bridge Setup

Use this setup if your client does not support remote HTTP MCP servers, or if you prefer to connect through a local stdio bridge process.

mcp-remote is an open-source tool maintained outside Euno. This example uses [email protected].

With this setup, Cursor launches mcp-remote locally, and mcp-remote connects to the Euno MCP endpoint on Cursor's behalf.

Prerequisites

Before using the bridge setup, make sure you have:

  • access to Euno and at least one assigned persona

  • Node.js 18+ installed locally so you can run npx

  • an MCP-compatible client that can launch a local stdio MCP server

Cursor with MCP Bridge (mcp-remote)

  1. Open Cursor Settings

  2. Go to Tools & Integrations

  3. Add a new MCP server. In the mcp.json file that opens, add:

    {
      "mcpServers": {
        "euno-assistant": {
          "command": "npx",
          "args": [
            "-y",
            "[email protected]",
            "https://api.app.euno.ai/mcp"
          ]
        }
      }
    }
  4. Save the file

  5. The first time you use Euno MCP, Cursor will prompt you to sign in to Euno in a browser

  6. After sign-in, you can start using Euno MCP in chat through the bridge

This bridge setup uses the same OAuth flow as the direct connection.

Troubleshooting

The MCP bridge does not start

  1. Confirm that Node.js version 18 or newer and npx are installed on your machine

  2. Confirm that the mcp-remote entry in mcp.json matches the example above

  3. Save the file and refresh Tools & Integrations

Sign-in worked before, but now fails

  1. Try the connection again

  2. Remove and re-add the Euno MCP server entry if the issue persists

  3. If the problem continues, contact your Euno team or support team

Last updated