Publish FastMCP 4 (alpha) docs to gofastmcp.com (#4624)

This commit is contained in:
Jeremiah Lowin 2026-07-23 21:21:01 -04:00 committed by GitHub
commit 8cf4506aa9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
846 changed files with 86684 additions and 22013 deletions

View file

@ -118,7 +118,7 @@ fastmcp install claude-code server.py --project /path/to/my-project
If your server needs environment variables (like API keys), you must include them:
```bash
fastmcp install claude-code server.py --server-name "Weather Server" \
fastmcp install claude-code server.py --name "Weather Server" \
--env API_KEY=your-api-key \
--env DEBUG=true
```
@ -126,7 +126,7 @@ fastmcp install claude-code server.py --server-name "Weather Server" \
Or load them from a `.env` file:
```bash
fastmcp install claude-code server.py --server-name "Weather Server" --env-file .env
fastmcp install claude-code server.py --name "Weather Server" --env-file .env
```
<Warning>