Align CLI, deployment, and config docs (#4259)

* docs: align CLI and deployment docs

Generated with Codex.

* docs: restore install config support, fix CIMD placeholder, add missing CLI flags

* docs: restore contrib guidance, correct --copy availability

* docs: remove dead redirect-shadowed pages

* Fix stale --path default in run command help

* docs: correct Goose flag support, fix README link to moved testing page

---------

Co-authored-by: Jeremiah Lowin <153965+jlowin@users.noreply.github.com>
This commit is contained in:
Bill Easton 2026-07-19 13:24:07 -05:00 committed by GitHub
commit 149a7aa2ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 85 additions and 1334 deletions

View file

@ -134,7 +134,7 @@ Tests are documentation that shows how features work. Good tests give reviewers
uv run pytest tests/server/ -v
# Run all tests before submitting PR
uv run pytest
uv run pytest -n auto
```
Every new feature needs tests. See the [Testing Guide](/development/tests) for patterns and requirements.
@ -166,7 +166,7 @@ just api-ref-all
#### Before Submitting
1. **Run all checks**: `uv run prek run --all-files && uv run pytest`
1. **Run all checks**: `uv run prek run --all-files && uv run pytest -n auto`
2. **Keep scope small**: One feature or fix per PR
3. **Write clear description**: Your PR description becomes permanent documentation
4. **Update docs**: Include documentation for API changes

View file

@ -14,7 +14,7 @@ Good tests are the foundation of reliable software. In FastMCP, we treat tests a
```bash
# Run all tests
uv run pytest
uv run pytest -n auto
# Run specific test file
uv run pytest tests/server/test_auth.py