Skip to content

Commit c06378f

Browse files
author
LittleCoinCoin
committed
docs(tutorials): update MCP host configuration tutorial content
- Update configuring arbitrary servers tutorial with enhanced content - Refresh environment synchronization tutorial documentation - Update advanced synchronization tutorial with latest patterns Maintains documentation consistency with current implementation. Ensures tutorials reflect latest MCP host configuration capabilities.
1 parent b0c9c7f commit c06378f

File tree

3 files changed

+388
-543
lines changed

3 files changed

+388
-543
lines changed

docs/articles/users/tutorials/04-mcp-host-configuration/03-configuring-arbitrary-servers.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ This article covers the **advanced method** for configuring MCP servers that are
4444
- ✅ No packaging requirements
4545
- ❌ Manual dependency management
4646
- ❌ No automatic compatibility checking
47-
- ❌ Limited rollback capabilities
4847

4948
**Package Deployment**:
5049
- ✅ Automatic dependency resolution
@@ -220,21 +219,21 @@ hatch mcp configure data-processor \
220219
### Environment-Specific Configuration
221220

222221
```bash
223-
# Development configuration
224-
hatch env use development
225-
hatch mcp configure dev-server \
222+
# Testing configuration
223+
hatch env use package-testing
224+
hatch mcp configure test-server \
226225
--host claude-desktop \
227226
--command python \
228-
--args /path/to/dev_server.py \
227+
--args /path/to/test_server.py \
229228
--env DEBUG=true \
230229
--env LOG_LEVEL=debug
231230

232-
# Production configuration
233-
hatch env use production
234-
hatch mcp configure prod-server \
231+
# Team standard configuration
232+
hatch env use team-standard-2024q4
233+
hatch mcp configure team-server \
235234
--host claude-desktop \
236235
--command python \
237-
--args /path/to/prod_server.py \
236+
--args /path/to/team_server.py \
238237
--env DEBUG=false \
239238
--env LOG_LEVEL=info
240239
```

0 commit comments

Comments
 (0)