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

# Cursor

> Connect social.plus to Cursor's built-in MCP client.

<Steps>
  <Step title="Open Cursor Settings">
    Press `⌘,` (macOS) or `Ctrl+,` (Windows/Linux) to open Settings. Navigate to **Features → MCP**.
  </Step>

  <Step title="Add a new MCP server">
    Click **Add new MCP server**. Enter:

    * **Name:** `social-plus`
    * **Type:** `SSE`
    * **URL:** `https://learn.social.plus/mcp`

    Click **Save**.
  </Step>

  <Step title="Verify in the MCP panel">
    The server should show as **Enabled** in the MCP list. You can now reference it in Cursor's AI chat.
  </Step>
</Steps>

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/social-b97141fb/images/ai-mcp/cursor-mcp-enabled.png" alt="Cursor MCP settings showing social-plus enabled" />
</Frame>

***

## Manual config

You can also edit `.cursor/mcp.json` directly in your project root:

```json theme={null}
{
  "mcpServers": {
    "social-plus": {
      "url": "https://learn.social.plus/mcp",
      "transport": "sse"
    }
  }
}
```
