mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-13 00:59:10 +02:00
The task protocol (SEP-1686) is now always enabled - server always registers task handlers and advertises task capabilities. Users still opt into background execution at the server level (tasks=True) or component level (task=True on tools, prompts, resources). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
428 B
Bash
10 lines
428 B
Bash
# FastMCP Tasks Example Environment Configuration
|
|
# This file is loaded by direnv (https://direnv.net/) when you cd into this directory
|
|
# Run `direnv allow` to enable automatic environment loading
|
|
|
|
# Configure Docket backend URL
|
|
# Use Redis backend (requires docker-compose up)
|
|
export FASTMCP_DOCKET_URL=redis://localhost:24242/0
|
|
|
|
# Or uncomment to use memory:// for single-process testing
|
|
# export FASTMCP_DOCKET_URL=memory://
|