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

# Cursor

> Use Cursor with the FITsociety MCP server.

Use this guide when you want Cursor to use FITsociety MCP tools during agentic
development or support workflows.

## Prerequisites

Before connecting, make sure:

* your company has the `mcp` feature enabled
* a Manager or Admin coach has created an MCP grant (OAuth consent or a static
  MCP API key) for the access you need

See [Setup for Coaches](/mcp/setup-for-coaches) for how to enable the feature
and create a grant.

## Server URL

```text theme={null}
https://mcp.fitsociety.io/mcp/v1
```

## Project configuration

Create or update:

```text theme={null}
.cursor/mcp.json
```

Add:

```json theme={null}
{
  "mcpServers": {
    "fitsociety": {
      "url": "https://mcp.fitsociety.io/mcp/v1"
    }
  }
}
```

Use project configuration when only this repository should have access to the
FITsociety MCP server.

## Global configuration

For user-wide access, use:

```text theme={null}
~/.cursor/mcp.json
```

with the same `mcpServers` entry.

## Authentication

If Cursor starts the OAuth flow, approve the connection in FITsociety.

If you use a static company MCP API key, configure it as a bearer header in
Cursor's MCP settings. Keep the key out of the repository. A typical header is:

```json theme={null}
{
  "Authorization": "Bearer YOUR_FITSOCIETY_MCP_KEY"
}
```

## Verify

Open Cursor's MCP tools view and confirm that `fitsociety` is connected. Then
ask the agent:

```text theme={null}
Use FITsociety MCP to list the tools you can access.
```
