forked from coder/coder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.json
More file actions
54 lines (54 loc) · 1.2 KB
/
Copy pathmodule.json
File metadata and controls
54 lines (54 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"id": "cursor",
"display_name": "Cursor IDE",
"description": "Add a one-click button to launch Cursor IDE",
"icon": "/icon/cursor.svg",
"category": "IDE",
"tags": [
"ide",
"cursor",
"ai"
],
"compatible_os": [
"linux"
],
"conflicts_with": [],
"pinned_version": "1.4.1",
"variables": [
{
"name": "agent_id",
"type": "string",
"description": "The ID of a Coder agent.",
"required": false,
"sensitive": false,
"computed": true
},
{
"name": "folder",
"type": "string",
"description": "The folder to open in Cursor IDE.",
"default": "",
"required": false,
"sensitive": false,
"computed": false
},
{
"name": "mcp",
"type": "string",
"description": "JSON-encoded string to configure MCP servers for Cursor. When set, writes ~/.cursor/mcp.json.",
"default": "",
"required": false,
"sensitive": false,
"computed": false
},
{
"name": "open_recent",
"type": "bool",
"description": "Open the most recent workspace or folder.",
"default": false,
"required": false,
"sensitive": false,
"computed": false
}
]
}