1. Check Cursor's current Models settings
Use only settings that your Cursor build documents or exposes. Avoid browser extensions, patched clients or hidden unsupported overrides for account-bound editor traffic.
Cursor and custom providers
Cursor has documented BYOK limits, so the safest approach is to separate Cursor-native model settings from OpenAI-compatible workflows that explicitly support a custom base URL.
curl https://www.tken.shop/v1/chat/completions \
-H "Authorization: Bearer $TKEN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "MiniMax-M2.7",
"messages": [
{"role": "user", "content": "Summarize this code change."}
]
}'
If your Cursor version or account exposes only official provider key fields, do not force unsupported behavior. Put TKEN in the surrounding developer stack where a custom OpenAI-compatible base URL is first-class.
Use only settings that your Cursor build documents or exposes. Avoid browser extensions, patched clients or hidden unsupported overrides for account-bound editor traffic.
For coding-agent experiments, use Continue or LiteLLM when you need a custom OpenAI-compatible base URL.
Use Node.js, Python or cURL to verify the TKEN key and model name before changing any editor-level configuration.
Start with SDK and proxy workflows, then keep Cursor-specific settings inside the limits Cursor documents for your account.