Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo in server.mdx #169

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion quickstart/server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,14 @@ In this case, we'll add our single weather server like so:

<Warning>
You may need to put the full path to the `uv` executable in the `command` field. You can get this by running `which uv` on MacOS/Linux or `where uv` on Windows.
Replace the directory path with the absolute path to your weather project folder
For macOS/Linux users: Use forward slashes in your path (e.g., /Users/username/projects/weather-app/weather)
If uv is not in your PATH, specify the full path to the executable:

Windows: "command": "C:\\Users\\YourUsername\\AppData\\Local\\Programs\\Python\\uv.exe"
macOS: "command": "/Users/username/.local/bin/uv"

The configuration defines a server named "weather" that will be managed by MCP
</Warning>
Comment on lines +306 to 314
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is true for everyone. We should leave this out probably.


<Note>
Expand All @@ -311,7 +319,7 @@ Make sure you pass in the absolute path to your server.

This tells Claude for Desktop:
1. There's an MCP server named "weather"
2. To launch it by running `uv --directory /ABSOLUTE/PATH/TO/PARENT/FOLDER/weather run weather`
2. To launch it by running `uv --directory /ABSOLUTE/PATH/TO/PARENT/FOLDER/weather run weather.py`

Save the file, and restart **Claude for Desktop**.
</Tab>
Expand Down