Skip to content

Commit 6d6e4cc

Browse files
committed
Mahesh's suggestions
1 parent 1a3cc6d commit 6d6e4cc

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

quickstart.mdx

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ In this tutorial, we'll build a simple MCP weather server and connect it to a ho
99

1010
Many LLMs (including Claude) do not currently have the ability to fetch the forecast and severe weather alerts. Let's use MCP to solve that!
1111

12-
We'll build a server that exposes two tools: `get-alerts` and `get-forecast`. Then we'll connect the server to an MCP host (in this case, Claude Desktop):
12+
We'll build a server that exposes two tools: `get-alerts` and `get-forecast`. Then we'll connect the server to an MCP host (in this case, Claude for Desktop):
1313

1414
<Frame>
1515
<img src="/images/weather-alerts.png" />
@@ -19,10 +19,10 @@ We'll build a server that exposes two tools: `get-alerts` and `get-forecast`. Th
1919
</Frame>
2020

2121
<Note>
22-
Servers can connect to any host. We've chosen Claude desktop here for simplicity, but we also have guides on [building your own client](/tutorials/building-a-client)
22+
Servers can connect to any client. We've chosen Claude desktop here for simplicity, but we also have guides on [building your own client](/tutorials/building-a-client)
2323
</Note>
2424

25-
<Accordion title="Why Claude Desktop and not Claude.ai?">
25+
<Accordion title="Why Claude for Desktop and not Claude.ai?">
2626
Because servers are locally run, MCP currently only supports desktop hosts. Remote hosts are in active development.
2727
</Accordion>
2828

@@ -398,12 +398,12 @@ Let's now test your server from an existing MCP host, Claude for Desktop.
398398
## Testing your server with Claude for Desktop
399399

400400
<Note>
401-
Unfortunately, Claude for Desktop is not yet available on Linux. Linux users can proceed to the [Building a client](/tutorials/building-a-client) tutorial for a workaround.
401+
Claude for Desktop is not yet available on Linux. Linux users can proceed to the [Building a client](/tutorials/building-a-client) tutorial to build an MCP client that connects to the server we just built.
402402
</Note>
403403

404404
First, make sure you have Claude for Desktop installed. [You can install the latest version here.](https://claude.ai/download)
405405

406-
Next, open your Claude Desktop App configuration at `~/Library/Application Support/Claude/claude_desktop_config.json` in a text editor.
406+
Next, open your Claude for Desktop App configuration at `~/Library/Application Support/Claude/claude_desktop_config.json` in a text editor.
407407

408408
For example, if you have [VS Code](https://code.visualstudio.com/) installed:
409409

@@ -432,7 +432,7 @@ Add this configuration (replace the parent folder path):
432432
"command": "uv",
433433
"args": [
434434
"--directory",
435-
"/PATH/TO/PARENT/FOLDER/weather",
435+
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/weather",
436436
"run",
437437
"weather"
438438
]
@@ -449,7 +449,7 @@ Add this configuration (replace the parent folder path):
449449
"command": "uv",
450450
"args": [
451451
"--directory",
452-
"C:\\PATH\TO\PARENT\FOLDER\weather",
452+
"C:\\ABSOLUTE\PATH\TO\PARENT\FOLDER\weather",
453453
"run",
454454
"weather"
455455
]
@@ -460,11 +460,11 @@ Add this configuration (replace the parent folder path):
460460
</Tab>
461461
</Tabs>
462462

463-
This tells Claude Desktop:
463+
This tells Claude for Desktop:
464464
1. There's an MCP server named "weather"
465-
2. Launch it by running `uv --directory /PATH/TO/PARENT/FOLDER/weather run weather`
465+
2. Launch it by running `uv --directory /ABSOLUTE/PATH/TO/PARENT/FOLDER/weather run weather`
466466

467-
Save the file, and restart **Claude Desktop**.
467+
Save the file, and restart **Claude for Desktop**.
468468
</Tab>
469469
<Tab title="Node">
470470
### Prerequisite knowledge
@@ -916,7 +916,7 @@ Unfortunately, Claude for Desktop is not yet available on Linux. Linux users can
916916

917917
First, make sure you have Claude for Desktop installed. [You can install the latest version here.](https://claude.ai/download)
918918

919-
Next, open your Claude Desktop App configuration at `~/Library/Application Support/Claude/claude_desktop_config.json` in a text editor.
919+
Next, open your Claude for Desktop App configuration at `~/Library/Application Support/Claude/claude_desktop_config.json` in a text editor.
920920

921921
For example, if you have [VS Code](https://code.visualstudio.com/) installed:
922922

@@ -945,7 +945,7 @@ Add this configuration (replace the parent folder path):
945945
"weather": {
946946
"command": "node",
947947
"args": [
948-
"/PATH/TO/PARENT/FOLDER/weather/build/index.js"
948+
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/weather/build/index.js"
949949
]
950950
}
951951
}
@@ -971,17 +971,17 @@ Add this configuration (replace the parent folder path):
971971
</Tab>
972972
</Tabs>
973973

974-
This tells Claude Desktop:
974+
This tells Claude for Desktop:
975975
1. There's an MCP server named "weather"
976-
2. Launch it by running `node /PATH/TO/PARENT/FOLDER/weather/build/index.js`
976+
2. Launch it by running `node /ABSOLUTE/PATH/TO/PARENT/FOLDER/weather/build/index.js`
977977

978-
Save the file, and restart **Claude Desktop**.
978+
Save the file, and restart **Claude for Desktop**.
979979
</Tab>
980980
</Tabs>
981981

982982
### Test with commands
983983

984-
First, make sure Claude Desktop is picking up the two tools we've exposed in our `weather` server. You can do this by looking for the hammer <img src="/images/claude-desktop-mcp-hammer-icon.svg" style={{display: 'inline', margin: 0, height: '1.3em'}} /> icon:
984+
First, make sure Claude for Desktop is picking up the two tools we've exposed in our `weather` server. You can do this by looking for the hammer <img src="/images/claude-desktop-mcp-hammer-icon.svg" style={{display: 'inline', margin: 0, height: '1.3em'}} /> icon:
985985

986986
<Frame>
987987
<img src="/images/visual-indicator-mcp-tools.png" />
@@ -993,9 +993,9 @@ After clicking on the hammer icon, you should see two tools listed:
993993
<img src="/images/available-mcp-tools.png" />
994994
</Frame>
995995

996-
If your server isn't being picked up by Claude Desktop, proceed to the **Troubleshooting** section for debugging advice.
996+
If your server isn't being picked up by Claude for Desktop, proceed to the [Troubleshooting](#troubleshooting) section for debugging advice.
997997

998-
You can now test your server by running the following commands in Claude Desktop:
998+
You can now test your server by running the following commands in Claude for Desktop:
999999

10001000
- What's the weather in Sacramento?
10011001
- What are the active weather alerts in Texas?
@@ -1043,11 +1043,11 @@ Fix:
10431043

10441044
This isn't an error - it just means there are no current weather alerts for that state. Try a different state or check during severe weather.
10451045
</Accordion>
1046-
<Accordion title="Claude Desktop Integration Issues">
1046+
<Accordion title="Claude for Desktop Integration Issues">
10471047
**Server not showing up in Claude**
10481048
1. Check your configuration file syntax
10491049
2. Make sure the path to your project is correct
1050-
3. Restart Claude Desktop completely
1050+
3. Restart Claude for Desktop completely
10511051

10521052
You can also check Claude's logs for errors like so:
10531053
```bash
@@ -1061,7 +1061,7 @@ If Claude attempts to use the tools but they fail:
10611061

10621062
1. Check Claude's logs for errors
10631063
2. Verify your server runs without errors
1064-
3. Try restarting Claude Desktop
1064+
3. Try restarting Claude for Desktop
10651065
</Accordion>
10661066
</AccordionGroup>
10671067

tutorials/building-a-client.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ uv run client.py path/to/build/index.js # node server
306306
```
307307

308308
<Note>
309-
If you're continuing the weather tutorial from the quickstart, you might have to initialize the server with `uv --directory /PATH/TO/PARENT/weather run weather`
309+
If you're continuing the weather tutorial from the quickstart, your command might look something like this: `python client.py .../weather/src/weather/server.py`
310310
</Note>
311311

312312
The client will:

0 commit comments

Comments
 (0)