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
Copy file name to clipboardExpand all lines: registry/coder/modules/cursor/README.md
+16-10Lines changed: 16 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder)
16
16
module "cursor" {
17
17
count = data.coder_workspace.me.start_count
18
18
source = "registry.coder.com/coder/cursor/coder"
19
-
version = "1.3.0"
19
+
version = "1.3.1"
20
20
agent_id = coder_agent.example.id
21
21
}
22
22
```
@@ -29,7 +29,7 @@ module "cursor" {
29
29
module "cursor" {
30
30
count = data.coder_workspace.me.start_count
31
31
source = "registry.coder.com/coder/cursor/coder"
32
-
version = "1.3.0"
32
+
version = "1.3.1"
33
33
agent_id = coder_agent.example.id
34
34
folder = "/home/coder/project"
35
35
}
@@ -39,23 +39,29 @@ module "cursor" {
39
39
40
40
Provide a JSON-encoded string via the `mcp` input. When set, the module writes the value to `~/.cursor/mcp.json` using a `coder_script` on workspace start.
41
41
42
+
The following example configures Cursor to use the GitHub MCP server with authentication facilitated by the [`coder_external_auth`](https://coder.com/docs/admin/external-auth#configure-a-github-oauth-app) resource.
0 commit comments