File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,32 @@ Under the `Settings` > `Feature` > `MCP Servers` section, click "Add New MCP Ser
47
47
- ** Command** : ` codegen `
48
48
- ** Arguments** : ` ["mcp"] `
49
49
50
+ ### For Cursor
51
+
52
+ To configure the Codegen MCP server in Cursor:
53
+
54
+ 1 . Open Cursor Settings (Cmd/Ctrl + ,)
55
+ 2 . Navigate to ` Features ` > ` Model Context Protocol `
56
+ 3 . Click "Add Server" and configure:
57
+ - ** Server Name** : ` codegen-mcp `
58
+ - ** Command** : ` codegen `
59
+ - ** Arguments** : ` ["mcp"] `
60
+ - ** Working Directory** : ` <path to your project> ` (optional)
61
+
62
+ Alternatively, you can add the configuration directly to your Cursor settings file:
63
+
64
+ ``` json
65
+ {
66
+ "mcp.servers" : {
67
+ "codegen" : {
68
+ "command" : " codegen" ,
69
+ "args" : [" mcp" ],
70
+ "cwd" : " <path to your project>"
71
+ }
72
+ }
73
+ }
74
+ ```
75
+
50
76
## Usage
51
77
52
78
### Starting the Server
You can’t perform that action at this time.
0 commit comments