docs/python-sdk/fastmcp-server-tasks-config.mdx
fastmcp.server.tasks.configTaskConfig for MCP SEP-1686 background task execution modes.
This module defines the configuration for how tools, resources, and prompts handle task-augmented execution as specified in SEP-1686.
TaskMeta <sup><a href="https://github.com/PrefectHQ/fastmcp/blob/main/src/fastmcp/server/tasks/config.py#L28" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>Metadata for task-augmented execution requests.
When passed to call_tool/read_resource/get_prompt, signals that the operation should be submitted as a background task.
Attributes:
ttl: Client-requested TTL in milliseconds. If None, uses server default.fn_key: Docket routing key. Auto-derived from component name if None.TaskConfig <sup><a href="https://github.com/PrefectHQ/fastmcp/blob/main/src/fastmcp/server/tasks/config.py#L44" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>Configuration for MCP background task execution (SEP-1686).
Controls how a component handles task-augmented requests:
Methods:
from_bool <sup><a href="https://github.com/PrefectHQ/fastmcp/blob/main/src/fastmcp/server/tasks/config.py#L82" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>from_bool(cls, value: bool) -> TaskConfig
Convert boolean task flag to TaskConfig.
Args:
value: True for "optional" mode, False for "forbidden" mode.Returns:
supports_tasks <sup><a href="https://github.com/PrefectHQ/fastmcp/blob/main/src/fastmcp/server/tasks/config.py#L93" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>supports_tasks(self) -> bool
Check if this component supports task execution.
Returns:
validate_function <sup><a href="https://github.com/PrefectHQ/fastmcp/blob/main/src/fastmcp/server/tasks/config.py#L101" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>validate_function(self, fn: Callable[..., Any], name: str) -> None
Validate that function is compatible with this task config.
Task execution requires:
Raises ImportError if mode is "optional" or "required" but pydocket is not installed. Raises ValueError if function is synchronous.
Args:
fn: The function to validate (handles callable classes and staticmethods).name: Name for error messages.Raises:
ImportError: If task execution is enabled but pydocket not installed.ValueError: If task execution is enabled but function is sync.