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

# Configure Cursor

> Connect Cursor to the Suggix MCP server.

Add Suggix as a remote MCP server in Cursor to use workspace feedback context in Composer and Agent workflows.

## Open the MCP configuration

Choose the configuration scope that fits your workflow:

* **Project**: Create `.cursor/mcp.json` in the project root.
* **Global**: Create `~/.cursor/mcp.json` to use Suggix across all projects.

## Add Suggix

Add the following configuration:

```json theme={null}
{
  "mcpServers": {
    "suggix": {
      "url": "https://mcp.suggix.com/mcp",
      "headers": {
        "Authorization": "Bearer sgx_mcp_your_key"
      }
    }
  }
}
```

Save the file, then open Cursor settings and confirm the Suggix server is connected in the MCP section.

## Use Suggix in Cursor

Open Composer in Agent mode and ask a task that benefits from product context, for example: `Review the feedback for this feature and propose an implementation plan that addresses the highest-impact requests.`

<Warning>
  Never commit a project `mcp.json` that includes a raw Suggix API key. Use a global configuration for private credentials or follow your team's secret-management process.
</Warning>

<Card title="Suggix MCP Overview" icon="plug" href="/mcp/overview">
  Learn how to create and manage workspace MCP API keys.
</Card>
