Skip to main content

Overview

Use the remote oleander MCP server in Cursor to connect your assistant workflows directly to oleander.
Beta: MCP integration docs and workflow may change.

Prerequisites

  • A valid oleander MCP token
  • Cursor installed

Add the MCP server

Option 1: Cursor CLI

Set your token as an environment variable:
export OLEANDER_MCP_TOKEN="your-token"
Then add the server:
cursor mcp add oleander -- npx -y mcp-remote https://oleander.dev/api/mcp --header "Authorization: Bearer $OLEANDER_MCP_TOKEN"

Option 2: .cursor/mcp.json

You can also add the server directly in your workspace config:
{
  "mcpServers": {
    "oleander": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://oleander.dev/api/mcp",
        "--header",
        "Authorization: Bearer your-token"
      ]
    }
  }
}
If you already have other MCP servers configured, add only the oleander entry under mcpServers.

Verify

List configured MCP servers to confirm oleander was added:
cursor mcp list