mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +00:00
Real Cursor IDE now uses AgentService at agent.api5.cursor.sh (HTTP/2-only) while 9router still spoke the retired ChatService at api2.cursor.sh with outdated headers, producing HTTP 429 "Update Required". Add an executeAgent path that builds an agent.v1.RunRequest Connect RPC over a raw http2 stream and fetches the account-specific usable model catalog via GetUsableModels. Also implement MCP tool calling over AgentService: encode OpenAI tools as AgentRunRequest.mcp_tools (McpToolDefinition with google.protobuf.Value input_schema), decode McpArgs tool calls, and forward them to the client as OpenAI tool_calls so the client runs the tool and resumes in the next turn. Reply to request_context_args with a non-empty RequestContext, to server heartbeats with client_heartbeat, and to KV blob get/set with empty results, so action queries no longer stall the stream. Fold the client system prompt into the user message (custom_system_prompt makes the server return an empty turn). Bump clientVersion to 3.12.17 and add the x-cursor-client-commit header so the gateway identifies as a current Cursor IDE release.
59 lines
2.0 KiB
JavaScript
59 lines
2.0 KiB
JavaScript
export default {
|
|
id: "cursor",
|
|
priority: 50,
|
|
alias: "cu",
|
|
uiAlias: "cu",
|
|
display: {
|
|
name: "Cursor IDE",
|
|
icon: "edit_note",
|
|
color: "#00D4AA",
|
|
website: "https://cursor.com",
|
|
notice: {
|
|
signupUrl: "https://cursor.com",
|
|
},
|
|
},
|
|
category: "oauth",
|
|
transport: {
|
|
baseUrl: "https://api2.cursor.sh",
|
|
chatPath: "/aiserver.v1.ChatService/StreamUnifiedChatWithTools",
|
|
format: "cursor",
|
|
headers: {
|
|
"connect-accept-encoding": "gzip",
|
|
"connect-protocol-version": "1",
|
|
"Content-Type": "application/connect+proto",
|
|
"User-Agent": "connect-es/1.6.1",
|
|
},
|
|
clientVersion: "3.12.17",
|
|
},
|
|
models: [
|
|
{ id: "default", name: "Auto (Server Picks)" },
|
|
{ id: "claude-4.5-opus-high-thinking", name: "Claude 4.5 Opus High Thinking" },
|
|
{ id: "claude-4.5-opus-high", name: "Claude 4.5 Opus High" },
|
|
{ id: "claude-4.5-sonnet-thinking", name: "Claude 4.5 Sonnet Thinking" },
|
|
{ id: "claude-4.5-sonnet", name: "Claude 4.5 Sonnet" },
|
|
{ id: "claude-4.5-haiku", name: "Claude 4.5 Haiku" },
|
|
{ id: "claude-4.5-opus", name: "Claude 4.5 Opus" },
|
|
{ id: "gpt-5.2-codex", name: "GPT 5.2 Codex" },
|
|
{ id: "claude-4.6-opus-max", name: "Claude 4.6 Opus Max" },
|
|
{ id: "claude-4.6-sonnet-medium-thinking", name: "Claude 4.6 Sonnet Medium Thinking" },
|
|
{ id: "kimi-k2.5", name: "Kimi K2.5" },
|
|
{ id: "gemini-3-flash-preview", name: "Gemini 3 Flash Preview" },
|
|
{ id: "gpt-5.2", name: "GPT 5.2" },
|
|
{ id: "gpt-5.3-codex", name: "GPT 5.3 Codex" },
|
|
],
|
|
oauth: {
|
|
apiEndpoint: "https://api2.cursor.sh",
|
|
chatEndpoint: "/aiserver.v1.ChatService/StreamUnifiedChatWithTools",
|
|
modelsEndpoint: "/agent.v1.AgentService/GetUsableModels",
|
|
api3Endpoint: "https://api3.cursor.sh",
|
|
agentEndpoint: "https://agent.api5.cursor.sh",
|
|
agentNonPrivacyEndpoint: "https://agentn.api5.cursor.sh",
|
|
clientVersion: "3.12.17",
|
|
clientType: "ide",
|
|
dbKeys: {
|
|
accessToken: "cursorAuth/accessToken",
|
|
machineId: "storage.serviceMachineId",
|
|
},
|
|
},
|
|
};
|