Skip to content

Commit c41b11f

Browse files
committed
updated MCP server configuration section
1 parent e2b7728 commit c41b11f

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

docs/mcp-server.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,35 @@ First of all you need to [install](https://claude.ai/download) Claude app and la
109109
{
110110
"mcpServers": {
111111
"ctx": {
112-
"command": "ctx server -c /path/to/project"
112+
"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+
"args": [
131+
"server",
132+
"-cC:\\Path\\To\\Project"
133+
]
113134
}
114135
}
115136
}
116137
```
117138

139+
> **Note**: You can app path to `ctx.exe` to your environment variables to avoid specifying the full path.
140+
118141
### Windows with WSL Configuration
119142

120143
```json

0 commit comments

Comments
 (0)