feat: add resource annotations support to FastMCP #1468
Merged
+185
−5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add missing annotations support for resources and resource templates in FastMCP server (using pattern consistent with tool annotations implementation pattern).
Changes:
Motivation and Context
The MCP protocol specification already defines
Annotations
(withaudience
andpriority
fields) for resources and resource templates at the protocol level (mcp.types
). Tools in FastMCP already have full annotations support, but resources and resource templates were missing this capability, preventing developers from providing metadata hints about resource priority and intended audience to MCP clients.This change enables developers to specify annotations when defining resources, allowing clients to make better decisions about resource presentation and usage based on these hints.
How Has This Been Tested?
Added test coverage including:
list_resources()
andlist_resource_templates()
Breaking Changes
None. Annotations are optional throughout the implementation, maintaining full backward compatibility with existing code.
Types of changes
Checklist