Skip to content

Commit e98afc1

Browse files
authored
fixed cli syntax for mcp client config generation (#534)
1 parent 4176d11 commit e98afc1

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

app/en/home/build-tools/create-a-mcp-server/page.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,21 +125,21 @@ Now you can connect your MCP server to apps that support MCP Clients, like AI as
125125
<Tabs.Tab>
126126

127127
```bash
128-
arcade configure claude --from-local
128+
arcade configure claude --host local
129129
```
130130

131131
</Tabs.Tab>
132132
<Tabs.Tab>
133133

134134
```bash
135-
arcade configure cursor --from-local
135+
arcade configure cursor --host local
136136
```
137137

138138
</Tabs.Tab>
139139
<Tabs.Tab>
140140

141141
```bash
142-
arcade configure vscode --from-local
142+
arcade configure vscode --host local
143143
```
144144

145145
</Tabs.Tab>

app/en/home/build-tools/create-a-tool-with-auth/page.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,21 +210,21 @@ Now you can connect your MCP server to apps that support MCP Clients, like AI as
210210
<Tabs.Tab>
211211

212212
```bash
213-
arcade configure claude --from-local
213+
arcade configure claude --host local
214214
```
215215

216216
</Tabs.Tab>
217217
<Tabs.Tab>
218218

219219
```bash
220-
arcade configure cursor --from-local
220+
arcade configure cursor --host local
221221
```
222222

223223
</Tabs.Tab>
224224
<Tabs.Tab>
225225

226226
```bash
227-
arcade configure vscode --from-local
227+
arcade configure vscode --host local
228228
```
229229

230230
</Tabs.Tab>

app/en/home/custom-mcp-server-quickstart/page.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,21 +165,21 @@ Now you can connect your MCP server to apps that support MCP Clients, like AI as
165165
<Tabs.Tab>
166166

167167
```bash
168-
arcade configure cursor --from-local
168+
arcade configure cursor --host local
169169
```
170170

171171
</Tabs.Tab>
172172
<Tabs.Tab>
173173

174174
```bash
175-
arcade configure vscode --from-local
175+
arcade configure vscode --host local
176176
```
177177

178178
</Tabs.Tab>
179179
<Tabs.Tab>
180180

181181
```bash
182-
arcade configure claude --from-local
182+
arcade configure claude --host local
183183
```
184184

185185
</Tabs.Tab>

app/en/references/mcp/python/clients/claude-desktop/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ arcade new my_server
2121
cd my_server
2222

2323
# Configure Claude Desktop to use your local server
24-
arcade configure claude --from-local
24+
arcade configure claude --host local
2525
```
2626

2727
This automatically updates your Claude Desktop configuration file with the correct settings.
@@ -267,7 +267,7 @@ arcade new my_server
267267
cd my_server
268268

269269
# Configure Claude Desktop
270-
arcade configure claude --from-local
270+
arcade configure claude --host local
271271

272272
# Restart Claude Desktop and your tools will be available!
273273
```

app/en/references/mcp/python/transports/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ app.run(transport="stdio")
4242
For Claude Desktop, use the `arcade configure` command:
4343

4444
```bash
45-
arcade configure claude --from-local
45+
arcade configure claude --host local
4646
```
4747

4848
Or manually edit `~/Library/Application Support/Claude/claude_desktop_config.json`:

0 commit comments

Comments
 (0)