> ## Documentation Index
> Fetch the complete documentation index at: https://docs.molesignal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Connect Cursor

> Connect Cursor Agent to MoleSignal Inbound MCP with a remote Streamable HTTP server and OAuth.

Cursor supports remote Streamable HTTP MCP servers and OAuth authentication.

## Configure the server

Create `.cursor/mcp.json` for the current project, or `~/.cursor/mcp.json` for a global
configuration:

```json theme={null}
{
  "mcpServers": {
    "molesignal": {
      "url": "https://molesignal.example.com/api/v1/mcp"
    }
  }
}
```

<Steps>
  <Step title="Open Tools & MCP">
    Open **Cursor Settings → Tools & MCP** and locate `molesignal`.
  </Step>

  <Step title="Connect with OAuth">
    Select **Connect** and complete the MoleSignal authorization page. Cursor discovers the OAuth
    endpoints from the MCP protected-resource metadata.
  </Step>

  <Step title="Verify tools">
    Confirm that `tool_search`, `call_read_tool`, and `call_managed_tool` appear in the available
    tools. Restart the server from **Tools & MCP** after changing the configuration.
  </Step>
</Steps>

<Warning>
  Do not commit a Bearer token in `.cursor/mcp.json`. Prefer OAuth for an interactive Cursor
  session. Use a client-supported secret injection mechanism for non-interactive credentials.
</Warning>

See the [official Cursor MCP documentation](https://cursor.com/docs/mcp).
