You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Interact with Cursor Cloud Agents API to launch AI agents that can work on your GitHub repositories. Supports launching agents, adding follow-up instructions, checking status, viewing conversations, and managing agent lifecycle.
16
+
17
+
18
+
19
+
## Tools
20
+
21
+
### `cursor_list_agents`
22
+
23
+
List all cloud agents for the authenticated user with optional pagination.
24
+
25
+
#### Input
26
+
27
+
| Parameter | Type | Required | Description |
28
+
| --------- | ---- | -------- | ----------- |
29
+
|`apiKey`| string | Yes | Cursor API key |
30
+
|`limit`| number | No | Number of agents to return \(default: 20, max: 100\)|
31
+
|`cursor`| string | No | Pagination cursor from previous response |
32
+
33
+
#### Output
34
+
35
+
| Parameter | Type | Description |
36
+
| --------- | ---- | ----------- |
37
+
|`content`| string | Human-readable list of agents |
38
+
|`metadata`| object | Agent list metadata |
39
+
40
+
### `cursor_get_agent`
41
+
42
+
Retrieve the current status and results of a cloud agent.
43
+
44
+
#### Input
45
+
46
+
| Parameter | Type | Required | Description |
47
+
| --------- | ---- | -------- | ----------- |
48
+
|`apiKey`| string | Yes | Cursor API key |
49
+
|`agentId`| string | Yes | Unique identifier for the cloud agent \(e.g., bc_abc123\)|
0 commit comments