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

# Cursor

> Connect Cursor to the Noux MCP server.

## Prerequisites

* A [personal MCP token](/mcp/getting-started) from **Integrations → MCP**
* Your MCP URL: `https://mcp.noux.app/mcp` (also shown in **Integrations → MCP**)

## Project-level configuration

Create or edit `.cursor/mcp.json` in your project root:

```json theme={null}
{
  "mcpServers": {
    "noux": {
      "url": "https://mcp.noux.app/mcp",
      "headers": {
        "Authorization": "Bearer <your-mcp-token>"
      }
    }
  }
}
```

Replace `<your-mcp-token>` with a personal token from **Integrations → MCP**.

<Warning>
  Do not commit real tokens to git. Add `.cursor/mcp.json` to `.gitignore` if it contains secrets, or use environment variable substitution if your client supports it.
</Warning>

## Enable the server

1. Save the configuration file.
2. Restart Cursor or reload MCP servers from Cursor settings.
3. Confirm **noux** appears in the MCP server list.
4. Ask the agent to call `get_info` to verify the connection.

## Using Noux in Cursor

Once connected, you can ask Cursor to:

* "List my Noux rooms" → `get_light_rooms`
* "Summarize comments in room X" → `get_room_conversation`
* "What happened in notetaker meeting Y?" → `get_notetaker_meeting`
* "Post a comment in room X" → `add_room_comment` (requires write-scoped token)
* "Invite [pekka.virtanen@example.com](mailto:pekka.virtanen@example.com) to room X using the default message" → `get_room_invitation_defaults` (read tool; ShareRoom on the room), then `send_room_invitations` with `firstName` and `lastName` for each invitee (requires write-scoped token)
* "Email pending invitees Bill and Leslie about the room update" → `get_light_rooms` for `pendingInvitees`, then `send_room_update_notifications` with `recipientInviteeEmails` only (requires write-scoped token)

See the full [tool reference](/mcp/tools) for inputs, permissions, and pagination.

## Related

* [Getting started](/mcp/getting-started)
* [Claude Desktop](/mcp/clients/claude-desktop)
* [MCP overview](/mcp/overview)
