Skip to content

Commit 596baec

Browse files
authored
Correct spelling of "macOS" (modelcontextprotocol#1298)
The correct spelling of "macOS" uses a lowercase "m" at the beginning. https://www.apple.com/macos
1 parent 751ccfb commit 596baec

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

docs/quickstart/client.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ uv venv
3333
# Activate virtual environment
3434
# On Windows:
3535
.venv\Scripts\activate
36-
# On Unix or MacOS:
36+
# On Unix or macOS:
3737
source .venv/bin/activate
3838

3939
# Install required packages
@@ -42,7 +42,7 @@ uv add mcp anthropic python-dotenv
4242
# Remove boilerplate files
4343
# On Windows:
4444
del main.py
45-
# On Unix or MacOS:
45+
# On Unix or macOS:
4646
rm main.py
4747

4848
# Create our main file
@@ -445,7 +445,7 @@ First, let's create and set up our project:
445445

446446
<CodeGroup>
447447

448-
```bash MacOS/Linux
448+
```bash macOS/Linux
449449
# Create project directory
450450
mkdir mcp-client-typescript
451451
cd mcp-client-typescript
@@ -1049,7 +1049,7 @@ Now, let's create and set up your project:
10491049

10501050
<CodeGroup>
10511051

1052-
```bash MacOS/Linux
1052+
```bash macOS/Linux
10531053
# Create a new directory for our project
10541054
mkdir kotlin-mcp-client
10551055
cd kotlin-mcp-client
@@ -1455,7 +1455,7 @@ Before starting, ensure your system meets these requirements:
14551455

14561456
- .NET 8.0 or higher
14571457
- Anthropic API key (Claude)
1458-
- Windows, Linux, or MacOS
1458+
- Windows, Linux, or macOS
14591459

14601460
## Setting up your environment
14611461

docs/quickstart/server.mdx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ First, let's install `uv` and set up our Python project and environment:
8787

8888
<CodeGroup>
8989

90-
```bash MacOS/Linux
90+
```bash macOS/Linux
9191
curl -LsSf https://astral.sh/uv/install.sh | sh
9292
```
9393

@@ -103,7 +103,7 @@ Now, let's create and set up our project:
103103

104104
<CodeGroup>
105105

106-
```bash MacOS/Linux
106+
```bash macOS/Linux
107107
# Create a new directory for our project
108108
uv init weather
109109
cd weather
@@ -283,7 +283,7 @@ For example, if you have [VS Code](https://code.visualstudio.com/) installed:
283283

284284
<CodeGroup>
285285

286-
```bash MacOS/Linux
286+
```bash macOS/Linux
287287
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
288288
```
289289

@@ -299,7 +299,7 @@ In this case, we'll add our single weather server like so:
299299

300300
<CodeGroup>
301301

302-
```json MacOS/Linux
302+
```json macOS/Linux
303303
{
304304
"mcpServers": {
305305
"weather": {
@@ -335,13 +335,13 @@ In this case, we'll add our single weather server like so:
335335

336336
<Warning>
337337

338-
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.
338+
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.
339339

340340
</Warning>
341341

342342
<Note>
343343

344-
Make sure you pass in the absolute path to your server. You can get this by running `pwd` on MacOS/Linux or `cd` on Windows Command Prompt. On Windows, remember to use double backslashes (`\\`) or forward slashes (`/`) in the JSON path.
344+
Make sure you pass in the absolute path to your server. You can get this by running `pwd` on macOS/Linux or `cd` on Windows Command Prompt. On Windows, remember to use double backslashes (`\\`) or forward slashes (`/`) in the JSON path.
345345

346346
</Note>
347347

@@ -415,7 +415,7 @@ Now, let's create and set up our project:
415415

416416
<CodeGroup>
417417

418-
```bash MacOS/Linux
418+
```bash macOS/Linux
419419
# Create a new directory for our project
420420
mkdir weather
421421
cd weather
@@ -767,7 +767,7 @@ For example, if you have [VS Code](https://code.visualstudio.com/) installed:
767767

768768
<CodeGroup>
769769

770-
```bash MacOS/Linux
770+
```bash macOS/Linux
771771
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
772772
```
773773

@@ -783,7 +783,7 @@ In this case, we'll add our single weather server like so:
783783

784784
<CodeGroup>
785785

786-
```json MacOS/Linux
786+
```json macOS/Linux
787787
{
788788
"mcpServers": {
789789
"weather": {
@@ -1012,7 +1012,7 @@ For example, if you have [VS Code](https://code.visualstudio.com/) installed:
10121012

10131013
<CodeGroup>
10141014

1015-
```bash MacOS/Linux
1015+
```bash macOS/Linux
10161016
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
10171017
```
10181018

@@ -1029,7 +1029,7 @@ In this case, we'll add our single weather server like so:
10291029

10301030
<CodeGroup>
10311031

1032-
```json MacOS/Linux
1032+
```json macOS/Linux
10331033
{
10341034
"mcpServers": {
10351035
"spring-ai-mcp-weather": {
@@ -1161,7 +1161,7 @@ Now, let's create and set up your project:
11611161

11621162
<CodeGroup>
11631163

1164-
```bash MacOS/Linux
1164+
```bash macOS/Linux
11651165
# Create a new directory for our project
11661166
mkdir weather
11671167
cd weather
@@ -1458,7 +1458,7 @@ For example, if you have [VS Code](https://code.visualstudio.com/) installed:
14581458

14591459
<CodeGroup>
14601460

1461-
```bash MacOS/Linux
1461+
```bash macOS/Linux
14621462
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
14631463
```
14641464

@@ -1475,7 +1475,7 @@ In this case, we'll add our single weather server like so:
14751475

14761476
<CodeGroup>
14771477

1478-
```json MacOS/Linux
1478+
```json macOS/Linux
14791479
{
14801480
"mcpServers": {
14811481
"weather": {
@@ -1561,7 +1561,7 @@ Now, let's create and set up your project:
15611561

15621562
<CodeGroup>
15631563

1564-
```bash MacOS/Linux
1564+
```bash macOS/Linux
15651565
# Create a new directory for our project
15661566
mkdir weather
15671567
cd weather
@@ -1735,7 +1735,7 @@ For example, if you have [VS Code](https://code.visualstudio.com/) installed:
17351735

17361736
<CodeGroup>
17371737

1738-
```bash MacOS/Linux
1738+
```bash macOS/Linux
17391739
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
17401740
```
17411741

@@ -1750,7 +1750,7 @@ In this case, we'll add our single weather server like so:
17501750

17511751
<CodeGroup>
17521752

1753-
```json MacOS/Linux
1753+
```json macOS/Linux
17541754
{
17551755
"mcpServers": {
17561756
"weather": {

docs/quickstart/user.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ If you encounter issues setting up or using the Filesystem Server, these solutio
212212

213213
<CodeGroup>
214214

215-
```bash MacOS/Linux
215+
```bash macOS/Linux
216216
npx -y @modelcontextprotocol/server-filesystem /Users/username/Desktop /Users/username/Downloads
217217
```
218218

@@ -237,7 +237,7 @@ You can run the following command to list recent logs and follow along with any
237237

238238
<CodeGroup>
239239

240-
```bash MacOS/Linux
240+
```bash macOS/Linux
241241
tail -n 20 -f ~/Library/Logs/Claude/mcp*.log
242242
```
243243

0 commit comments

Comments
 (0)