# 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 `mcp-remote@0.1.37`.

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:

   ```json
   {
     "mcpServers": {
       "euno-assistant": {
         "command": "npx",
         "args": [
           "-y",
           "mcp-remote@0.1.37",
           "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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.euno.ai/ai-assistant/mcp-bridge-setup.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
