> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.askelephant.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.askelephant.ai/_mcp/server.

# Cursor

Cursor supports remote MCP servers through `mcp.json`.

## Option 1: Add both servers globally

Create `~/.cursor/mcp.json` to make the AskElephant servers available in every workspace:

```json
{
  "mcpServers": {
    "AskElephant": {
      "url": "https://app.askelephant.ai/mcp"
    },
    "AskElephant API Docs": {
      "url": "https://docs.askelephant.ai/_mcp/server"
    }
  }
}
```

## Option 2: Add them per project

Create `.cursor/mcp.json` in a specific repository if you only want these tools available for that project:

```json
{
  "mcpServers": {
    "AskElephant": {
      "url": "https://app.askelephant.ai/mcp"
    },
    "AskElephant API Docs": {
      "url": "https://docs.askelephant.ai/_mcp/server"
    }
  }
}
```

## Authenticate if prompted

Cursor supports OAuth-capable remote MCP servers. If Cursor prompts you to sign in or authorize AskElephant, complete that flow after saving the config.

## Verify the setup

Open a new Cursor chat and check that the AskElephant tools appear in the available tools list.

Example prompts:

* `Find my latest customer meetings with Acme and summarize the themes.`
* `Show me the transcript timeline for the most recent completed call.`
* `Help me write a sync job against the AskElephant API using updated_at filtering.`

## Notes

* Cursor's official docs describe two common config locations: `~/.cursor/mcp.json` for global tools and `.cursor/mcp.json` for project-specific tools.
* Cursor also supports remote server headers in `mcp.json`, but you do not need custom headers for the AskElephant URLs above unless your environment requires them later.
* If the tools do not appear immediately, reload the Cursor window and open a fresh chat.