We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2b7728 commit c41b11fCopy full SHA for c41b11f
docs/mcp-server.md
@@ -109,12 +109,35 @@ First of all you need to [install](https://claude.ai/download) Claude app and la
109
{
110
"mcpServers": {
111
"ctx": {
112
- "command": "ctx server -c /path/to/project"
+ "command": "ctx",
113
+ "args": [
114
+ "server",
115
+ "-c",
116
+ "/path/to/project"
117
+ ]
118
+ }
119
120
+}
121
+```
122
+
123
+### Windows Configuration
124
125
+```json
126
+{
127
+ "mcpServers": {
128
+ "ctx": {
129
+ "command": "C:\\ctx.exe",
130
131
132
+ "-cC:\\Path\\To\\Project"
133
134
}
135
136
137
```
138
139
+> **Note**: You can app path to `ctx.exe` to your environment variables to avoid specifying the full path.
140
141
### Windows with WSL Configuration
142
143
```json
0 commit comments