mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-09 15:19:10 +02:00
* Implement MCP background tasks (SEP-1686) using Docket Adds support for background task execution via the MCP task protocol, powered by Docket for task queue management. - Tools, resources, and prompts can be marked with `task=True` to run async - Progress dependency for tracking task progress - CurrentDocket and CurrentWorker dependencies for advanced use cases - Client API with `.call_tool(..., task=True)` returns task handles - Task status notifications via subscriptions - CLI worker command for distributed task processing Configuration via environment: - FASTMCP_ENABLE_DOCKET=true - FASTMCP_ENABLE_TASKS=true - FASTMCP_DOCKET_URL=redis://... (or memory:// for single-process) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Fix tasks example import (TaskStatusResponse → GetTaskResult) The example was using a non-existent TaskStatusResponse type. Updated to use mcp.types.GetTaskResult which is what the on_status_change callback actually receives. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Fix env var name in Docket error messages The error messages referenced FASTMCP_EXPERIMENTAL_ENABLE_DOCKET but the actual setting is FASTMCP_ENABLE_DOCKET. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * Remove deprecated code re-added from pre-#2329 branch - Remove ExtendedEnvSettingsSource (FASTMCP_SERVER_ prefix support) - Remove dependencies parameter from FastMCP.__init__ * Replace fakeredis git pin with PyPI release * Remove redundant fakeredis dev dep (pulled via pydocket) --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Jeremiah Lowin <153965+jlowin@users.noreply.github.com>
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
"""
|
|
Tests for session-based task ID isolation (CRITICAL SECURITY).
|
|
|
|
Ensures that tasks are properly scoped to sessions and clients cannot
|
|
access each other's tasks.
|
|
"""
|
|
|
|
import pytest
|
|
|
|
from fastmcp import FastMCP
|
|
from fastmcp.client import Client
|
|
|
|
|
|
@pytest.fixture
|
|
async def task_server():
|
|
"""Create a server with background tasks enabled."""
|
|
mcp = FastMCP("security-test-server")
|
|
|
|
@mcp.tool(task=True) # Enable background execution
|
|
async def secret_tool(data: str) -> str:
|
|
"""A tool that processes sensitive data."""
|
|
return f"Secret result: {data}"
|
|
|
|
return mcp
|
|
|
|
|
|
async def test_same_session_can_access_all_its_tasks(task_server):
|
|
"""A single session can access all tasks it created."""
|
|
async with Client(task_server) as client:
|
|
# Submit multiple tasks
|
|
task1 = await client.call_tool(
|
|
"secret_tool", {"data": "first"}, task=True, task_id="task-1"
|
|
)
|
|
task2 = await client.call_tool(
|
|
"secret_tool", {"data": "second"}, task=True, task_id="task-2"
|
|
)
|
|
|
|
# Wait for both to complete
|
|
await task1.wait(timeout=2.0)
|
|
await task2.wait(timeout=2.0)
|
|
|
|
# Should be able to access both
|
|
result1 = await task1.result()
|
|
result2 = await task2.result()
|
|
|
|
assert "first" in str(result1.data)
|
|
assert "second" in str(result2.data)
|