3.8 KiB
Cursor IDE Integration
This guide covers the current CCS-owned Cursor runtime, including auth import, local daemon lifecycle, live probe checks, and dashboard controls.
What It Provides
- OpenAI-compatible local endpoint powered by Cursor credentials.
- Anthropic-compatible local endpoint at
/v1/messagesfor Claude-native clients. - Cursor model list and chat completions via the local CCS daemon.
- Dedicated dashboard page:
ccs config->Cursor IDE.
What This Runtime Actually Does
ccs cursor does not launch Cursor IDE itself.
The current workflow is:
- import Cursor credentials from local SQLite or manual input
- run a local CCS daemon on
127.0.0.1:<port> - launch Claude Code against that daemon
- have CCS translate requests to Cursor upstream
Treat this as a CCS-managed Cursor bridge, not a generic CLIProxy-backed provider path.
Prerequisites
- Cursor IDE installed and logged in.
- CCS installed and configured (
ccs configworks). - For auto-detect auth on macOS/Linux:
sqlite3available in PATH.
CLI Workflow
1) Enable integration
ccs cursor enable
2) Import credentials
Auto-detect from Cursor local SQLite state:
ccs cursor auth
Manual fallback:
ccs cursor auth --manual --token <token> --machine-id <machine-id>
3) Start daemon
ccs cursor start
4) Run a live probe
ccs cursor probe
Use this to verify that the current build can complete one real authenticated request through the local daemon.
5) Run Cursor-backed Claude
ccs cursor "explain this repo"
6) Verify status
ccs cursor status
Use ccs cursor with bare or normal Claude args to run through the local Cursor proxy.
The admin namespace remains available for setup and inspection:
ccs cursor help
7) Stop daemon
ccs cursor stop
Runtime Defaults
- Default port:
20129 ghost_mode: enabledauto_start: disabled- Model list resolution: authenticated live fetch when available, with cached/default fallback.
- Request model validation: if a requested model is not present in the available Cursor model catalog, daemon falls back to the resolved default model.
- Daemon API surface:
POST /v1/chat/completions,POST /v1/messages, andGET /v1/models. - Live verification:
ccs cursor probeorPOST /api/cursor/probe
These values are managed in unified config and can be updated from CLI or dashboard.
Dashboard Usage
Open dashboard:
ccs config
Then navigate to Cursor IDE in the sidebar.
Available controls:
- Integration toggle (
enabled) - Auth actions (auto-detect, manual import)
- Daemon actions (start/stop)
- Runtime config (port, auto-start, ghost mode)
- Models list with searchable combobox filtering for large catalogs
- Raw editor for
~/.ccs/cursor.settings.json
Raw Settings and Unified Config Sync
Raw settings are stored in:
~/.ccs/cursor.settings.json
When raw settings include a local ANTHROPIC_BASE_URL port override, CCS synchronizes that port back into unified config so CLI and dashboard remain consistent.
Troubleshooting
Not authenticated or expired in ccs cursor status
- Re-run
ccs cursor auth(or manual auth command).
ccs cursor probe fails even though status is green
statusproves local config/auth/daemon readiness only.probeproves the live runtime path.- If
probefails with upstream protocol errors, inspect the current CCS build first rather than assuming the local daemon is healthy.
Auto-detect fails
- Ensure Cursor is logged in.
- Confirm
sqlite3is installed or use manual import. - Use manual auth import if needed.
Daemon fails to start
- Check if port
20129is in use. - Change port in dashboard config tab, then retry
ccs cursor start.