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

# Cursor Setup

> Connect Cursor to Kasava's product intelligence via MCP

Cursor supports MCP servers natively. Connect Kasava to get code intelligence, product graph queries, and more directly in Cursor's AI features.

## Quick Setup

<Steps>
  <Step title="Create an API Key">
    Go to [Settings > API Keys](https://app.kasava.dev/settings/api-keys) in Kasava and create a new key. Copy it immediately.
  </Step>

  <Step title="Open Cursor Settings">
    Open Cursor Settings (`Cmd+,` on macOS, `Ctrl+,` on Windows/Linux), then navigate to **MCP** in the sidebar.
  </Step>

  <Step title="Add Kasava MCP Server">
    Click **Add MCP Server** and enter:

    * **Name**: `kasava`
    * **URL**: `https://api.kasava.dev/v1/mcp/sse`
    * **Headers**: `Authorization: Bearer kasava_live_YOUR_KEY`
  </Step>

  <Step title="Verify Connection">
    The MCP status indicator should show green. Try asking Cursor's AI: "List my Kasava repositories."
  </Step>
</Steps>

## Manual Configuration

Alternatively, add to `~/.cursor/mcp.json`:

```json theme={null}
{
  "mcpServers": {
    "kasava": {
      "url": "https://api.kasava.dev/v1/mcp/sse",
      "headers": {
        "Authorization": "Bearer kasava_live_YOUR_KEY"
      }
    }
  }
}
```

Restart Cursor after editing the config file.

## Using Agent Skills in Cursor

Kasava's Agent Skills also work in Cursor. Copy the `skills/` directory from the [plugin repository](https://github.com/kasava-dev/claude-code-plugin) into your project:

```bash theme={null}
git clone https://github.com/kasava-dev/claude-code-plugin /tmp/kasava-plugin
cp -r /tmp/kasava-plugin/skills .cursor/skills/
```

Skills provide procedural guidance even without MCP, and are enhanced when MCP is connected.

## What You Can Do

With Kasava connected in Cursor, you can:

* **"Search for the AuthService definition"** — uses symbol graph search
* **"What's the architecture of this product?"** — queries the product graph
* **"Show me recent commits that changed the billing module"** — semantic commit search
* **"Export the Q2 plan as a spec"** — agent-consumable specification export
* **"Any customer reports about payment failures?"** — customer signal search
