Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.oleander.dev/llms.txt

Use this file to discover all available pages before exploring further.

Overview

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

Prerequisites

  • Cursor installed

Add the MCP server

Option 1: Agent CLI

Add the server:
agent mcp add oleander -- npx -y mcp-remote https://oleander.dev/mcp
When prompted, complete the OAuth flow in your browser to authorize access.

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/mcp"
      ]
    }
  }
}
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:
agent mcp list

Reset authentication

Cursor caches the OAuth access token and refresh token in .mcp-auth. If you want to authenticate with a different org, remove the cached tokens and run the MCP command again:
rm -rf .mcp-auth