Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: jlowin/fastmcp

Tags

v2.14.1

Toggle v2.14.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Deprecate exclude_args in favor of Depends() (#2621)

* Deprecate exclude_args in favor of Depends()

* Add version badge to Hiding Parameters section

v2.14.0

Toggle v2.14.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: remove tests/test_examples.py (#2593)

v2.13.3

Toggle v2.13.3's commit message
Pin mcp<1.23 to avoid SDK breaking changes

v2.13.2

Toggle v2.13.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix Azure provider OIDC scope handling (#2506)

* Fix Azure provider to handle OIDC scopes correctly

OIDC scopes (openid, profile, email, offline_access) were being
incorrectly prefixed with identifier_uri, causing Azure to reject
authorization requests. This fix:

- Detects OIDC scopes and sends them unprefixed to Azure
- Filters OIDC scopes from token validation (Azure doesn't include
  them in access token scp claims)
- Still advertises OIDC scopes to clients via valid_scopes
- Also handles dot-notation scopes (e.g., User.Read) correctly

Fixes #2451, #2420

* Fix dot-notation scopes to be prefixed (custom scopes can have dots)

* Improve Azure scope handling docs with clear examples

v2.13.1

Toggle v2.13.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #2426 from jlowin/simplify-object-schema-check

Simplify _is_object_schema helper

v2.13.0.2

Toggle v2.13.0.2's commit message
Replace openapi-core with jsonschema-path (#2291)

v2.13.0.1

Toggle v2.13.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix Azure scope validation (#2269)

* Update docs for required scopes

* add scopes

* Fix Azure scope validation

Azure returns unprefixed scopes in JWT tokens but requires prefixed scopes in authorization requests. The previous implementation incorrectly validated tokens against prefixed scopes, causing "invalid_token" errors.

Simplified AzureProvider to use standard JWTVerifier with unprefixed scopes for validation. Scopes are only prefixed when building the Azure authorization URL via _build_upstream_authorize_url() override.

Closes #2263

v2.13.0

Toggle v2.13.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: Update SDK documentation (#2214)

Co-authored-by: marvin-context-protocol[bot] <225465937+marvin-context-protocol[bot]@users.noreply.github.com>

v2.13.0rc3

Toggle v2.13.0rc3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Remove redundant None checks from Context methods (#2251)

The fastmcp property already raises RuntimeError if None, making these checks unreachable.

v2.13.0rc2

Toggle v2.13.0rc2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
allow non write users for marvin flows (#2161)