Skip to content

Commit b8d4375

Browse files
committed
grammar
1 parent 75dd5f4 commit b8d4375

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

docs/first-server/python.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ This guide uses the OpenWeatherMap API. You'll need a free API key from [OpenWea
427427
</Card>
428428
</CardGroup>
429429

430-
## Available Transports
430+
## Available transports
431431

432432
While this guide uses stdio transport, MCP supports multiple transport options:
433433

@@ -445,7 +445,7 @@ transport = SSEServerTransport("/events", response)
445445

446446
## Troubleshooting
447447

448-
### Installation Issues
448+
### Installation issues
449449
```bash
450450
# Check Python version
451451
python --version
@@ -455,14 +455,14 @@ pip uninstall -r requirements.txt
455455
pip install -r requirements.txt
456456
```
457457

458-
### Runtime Errors
458+
### Runtime errors
459459
```bash
460460
# Enable debug logging
461461
export MCP_LOG_LEVEL=DEBUG
462462
python weather_server.py
463463
```
464464

465-
### Type Checking
465+
### Type checking
466466
```bash
467467
# Install mypy
468468
pip install mypy
@@ -523,7 +523,7 @@ mypy weather_server.py
523523
</Accordion>
524524
</AccordionGroup>
525525

526-
## Advanced Features
526+
## Advanced features
527527

528528
<Steps>
529529
<Step title="Add caching">

docs/first-server/typescript.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ This guide uses the OpenWeatherMap API. You'll need a free API key from [OpenWea
562562
</Card>
563563
</CardGroup>
564564

565-
## Available Transports
565+
## Available transports
566566

567567
While this guide uses stdio transport, MCP supports multiple transport options:
568568

@@ -580,7 +580,7 @@ const transport = new SSEServerTransport("/events", response);
580580

581581
## Troubleshooting
582582

583-
### Build Errors
583+
### Build errors
584584
```bash
585585
# Check TypeScript version
586586
npx tsc --version
@@ -590,7 +590,7 @@ rm -rf dist/
590590
npm run build
591591
```
592592

593-
### Runtime Errors
593+
### Runtime errors
594594
Look for detailed error messages in the Claude app logs:
595595
```bash
596596
# Launch Claude with logging
@@ -600,7 +600,7 @@ open /Applications/Claude.app --stdout ~/Claude.log --stderr ~/Claude.log
600600
tail -f ~/Claude.log
601601
```
602602

603-
### Type Errors
603+
### Type errors
604604
```bash
605605
# Check types without building
606606
npx tsc --noEmit

0 commit comments

Comments
 (0)