fastmcp 2.14.0__tar.gz → 2.14.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/run-tests.yml +3 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/PKG-INFO +5 -3
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/sampling.mdx +103 -1
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-client.mdx +33 -33
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-transports.mdx +4 -4
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-low_level.mdx +6 -6
- fastmcp-2.14.1/docs/servers/sampling.mdx +488 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/tasks.mdx +1 -1
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/tools.mdx +14 -23
- fastmcp-2.14.1/examples/sampling/README.md +62 -0
- fastmcp-2.14.1/examples/sampling/server_fallback.py +88 -0
- fastmcp-2.14.1/examples/sampling/structured_output.py +110 -0
- fastmcp-2.14.1/examples/sampling/text.py +78 -0
- fastmcp-2.14.1/examples/sampling/tool_use.py +125 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/pyproject.toml +4 -3
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/client.py +79 -12
- fastmcp-2.14.1/src/fastmcp/client/sampling/__init__.py +69 -0
- fastmcp-2.14.1/src/fastmcp/client/sampling/handlers/anthropic.py +387 -0
- fastmcp-2.14.1/src/fastmcp/client/sampling/handlers/openai.py +399 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/tasks.py +0 -63
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/transports.py +35 -16
- fastmcp-2.14.1/src/fastmcp/experimental/sampling/handlers/__init__.py +5 -0
- fastmcp-2.14.1/src/fastmcp/experimental/sampling/handlers/openai.py +5 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/prompts/prompt.py +5 -5
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/resources/resource.py +4 -4
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/resources/template.py +5 -5
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/context.py +448 -113
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/proxy.py +3 -3
- fastmcp-2.14.1/src/fastmcp/server/sampling/__init__.py +10 -0
- fastmcp-2.14.1/src/fastmcp/server/sampling/run.py +301 -0
- fastmcp-2.14.1/src/fastmcp/server/sampling/sampling_tool.py +108 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/server.py +67 -25
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/tasks/converters.py +2 -1
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/tools/tool.py +3 -5
- fastmcp-2.14.1/tests/client/sampling/handlers/test_anthropic_handler.py +247 -0
- {fastmcp-2.14.0/tests/experimental/sampling → fastmcp-2.14.1/tests/client/sampling/handlers}/test_openai_handler.py +4 -4
- fastmcp-2.14.1/tests/client/tasks/test_prompt_task_mcp_message.py +57 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_client.py +112 -1
- fastmcp-2.14.1/tests/client/test_sampling.py +988 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/conftest.py +7 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/middleware/test_tool_injection.py +6 -6
- fastmcp-2.14.1/tests/server/proxy/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/proxy/test_proxy_client.py +1 -3
- fastmcp-2.14.1/tests/server/sampling/__init__.py +0 -0
- fastmcp-2.14.1/tests/server/sampling/test_sampling_tool.py +121 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_context.py +4 -4
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_mount.py +63 -0
- fastmcp-2.14.1/tests/tools/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/uv.lock +119 -11
- fastmcp-2.14.0/docs/servers/sampling.mdx +0 -270
- fastmcp-2.14.0/examples/sampling.py +0 -52
- fastmcp-2.14.0/examples/sampling_fallback.py +0 -38
- fastmcp-2.14.0/src/fastmcp/client/sampling.py +0 -56
- fastmcp-2.14.0/src/fastmcp/experimental/sampling/handlers/base.py +0 -21
- fastmcp-2.14.0/src/fastmcp/experimental/sampling/handlers/openai.py +0 -170
- fastmcp-2.14.0/src/fastmcp/server/sampling/handler.py +0 -19
- fastmcp-2.14.0/tests/client/test_sampling.py +0 -165
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.ccignore +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.cursor/rules/core-mcp-objects.mdc +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.cursor/worktrees.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/ISSUE_TEMPLATE/bug.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/ISSUE_TEMPLATE/enhancement.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/copilot-instructions.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/dependabot.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/pull_request_template.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/release.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/auto-close-duplicates.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/auto-close-needs-mre.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/martian-issue-triage.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/martian-test-failure.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/marvin-dedupe-issues.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/marvin-label-triage.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/marvin.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/publish.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/run-static.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/update-config-schema.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.github/workflows/update-sdk-docs.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.gitignore +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/.pre-commit-config.yaml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/AGENTS.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/CLAUDE.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/CODE_OF_CONDUCT.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/LICENSE +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/SECURITY.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/.ccignore +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/.cursor/rules/mintlify.mdc +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/blue-logo.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/f-watercolor-waves-dark.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/f-watercolor-waves.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/favicon.svg +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/thumbnail-background.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/wordmark-padded.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/wordmark-watercolor-rainbow-dark.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/wordmark-watercolor-rainbow.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/wordmark-watercolor-waves-dark.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/wordmark-watercolor-waves.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/wordmark-white-padded.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/wordmark-white.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/brand/wordmark.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/images/fastmcp_cloud/connect.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/images/fastmcp_cloud/create_project.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/images/fastmcp_cloud/deployment.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/images/fastmcp_cloud/quickstart.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/images/oauth-proxy-consent-screen.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/images/tutorial-rest-api-result.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/schemas/mcp_server_config/latest.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/schemas/mcp_server_config/v1.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/assets/updates/release-2-7.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/changelog.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/auth/bearer.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/auth/oauth.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/client.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/elicitation.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/logging.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/messages.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/progress.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/prompts.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/resources.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/roots.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/tasks.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/tools.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/clients/transports.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/community/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/community/showcase.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/css/banner.css +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/css/python-sdk.css +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/css/style.css +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/css/version-badge.css +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/deployment/fastmcp-cloud.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/deployment/http.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/deployment/running-server.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/deployment/server-configuration.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/development/contributing.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/development/releases.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/development/tests.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/development/upgrade-guide.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/docs.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/getting-started/installation.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/getting-started/quickstart.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/getting-started/welcome.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/anthropic.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/auth0.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/authkit.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/aws-cognito.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/azure.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/chatgpt.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/claude-code.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/claude-desktop.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/cursor-install-mcp.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/cursor.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/descope.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/discord.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/eunomia-authorization.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/fastapi.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/gemini-cli.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/gemini.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/github.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/google.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/images/authkit/enable_dcr.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/images/oci/ociaddapplication.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/images/oci/ocieditdomainsettings.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/images/oci/ocieditdomainsettingsbutton.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/images/oci/ocioauthconfiguration.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/images/permit/abac_condition_example.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/images/permit/abac_policy_example.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/images/permit/policy_mapping.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/images/permit/role_assignement.png +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/mcp-json-configuration.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/oci.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/openai.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/openapi.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/permit.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/scalekit.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/supabase.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/integrations/workos.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/patterns/cli.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/patterns/contrib.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/patterns/decorating-methods.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/patterns/testing.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/patterns/tool-transformation.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/public/schemas/fastmcp.json/latest.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/public/schemas/fastmcp.json/v1.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-cli.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-install-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-install-claude_code.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-install-claude_desktop.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-install-cursor.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-install-gemini_cli.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-install-mcp_json.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-install-shared.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-run.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-cli-tasks.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-auth-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-auth-bearer.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-auth-oauth.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-elicitation.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-logging.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-messages.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-oauth_callback.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-progress.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-roots.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-sampling.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-client-tasks.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-dependencies.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-exceptions.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-mcp_config.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-prompts-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-prompts-prompt.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-prompts-prompt_manager.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-resources-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-resources-resource.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-resources-resource_manager.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-resources-template.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-resources-types.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-auth.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-jwt_issuer.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-middleware.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-oauth_proxy.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-oidc_proxy.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-auth0.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-aws.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-azure.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-debug.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-descope.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-discord.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-github.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-google.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-in_memory.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-introspection.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-jwt.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-oci.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-scalekit.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-supabase.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-providers-workos.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-auth-redirect_validation.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-context.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-dependencies.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-elicitation.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-event_store.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-http.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-middleware-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-middleware-caching.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-middleware-error_handling.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-middleware-logging.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-middleware-middleware.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-middleware-rate_limiting.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-middleware-timing.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-middleware-tool_injection.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-openapi-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-openapi-components.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-openapi-routing.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-openapi-server.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-proxy.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-server.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-tasks-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-tasks-capabilities.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-tasks-config.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-tasks-converters.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-tasks-handlers.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-tasks-keys.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-tasks-protocol.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-server-tasks-subscriptions.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-settings.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-tools-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-tools-tool.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-tools-tool_manager.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-tools-tool_transform.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-auth.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-cli.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-components.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-exceptions.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-http.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-inspect.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-json_schema.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-json_schema_type.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-logging.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_config.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_server_config-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_server_config-v1-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_server_config-v1-environments-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_server_config-v1-environments-base.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_server_config-v1-environments-uv.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_server_config-v1-mcp_server_config.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_server_config-v1-sources-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_server_config-v1-sources-base.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-mcp_server_config-v1-sources-filesystem.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-openapi-__init__.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-openapi-director.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-openapi-formatters.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-openapi-json_schema_converter.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-openapi-models.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-openapi-parser.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-openapi-schemas.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-tests.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-types.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/python-sdk/fastmcp-utilities-ui.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/auth/authentication.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/auth/full-oauth-server.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/auth/oauth-proxy.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/auth/oidc-proxy.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/auth/remote-oauth.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/auth/token-verification.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/composition.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/context.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/elicitation.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/icons.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/logging.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/middleware.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/progress.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/prompts.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/proxy.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/resources.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/server.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/servers/storage-backends.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/snippets/local-focus.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/snippets/version-badge.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/snippets/youtube-embed.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/tutorials/create-mcp-server.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/tutorials/mcp.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/tutorials/rest-api.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/docs/updates.mdx +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/demo.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/pyproject.toml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/__main__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/_atproto/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/_atproto/_client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/_atproto/_posts.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/_atproto/_profile.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/_atproto/_read.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/_atproto/_social.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/py.typed +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/settings.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/atproto_mcp/src/atproto_mcp/types.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/authkit_dcr/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/authkit_dcr/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/authkit_dcr/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/aws_oauth/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/aws_oauth/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/aws_oauth/requirements.txt +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/aws_oauth/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/azure_oauth/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/azure_oauth/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/azure_oauth/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/discord_oauth/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/discord_oauth/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/discord_oauth/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/github_oauth/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/github_oauth/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/github_oauth/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/google_oauth/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/google_oauth/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/google_oauth/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/mounted/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/mounted/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/mounted/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/scalekit_oauth/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/scalekit_oauth/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/scalekit_oauth/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/workos_oauth/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/workos_oauth/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/auth/workos_oauth/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/complex_inputs.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/config_server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/desktop.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/echo.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/fastmcp_config/env_interpolation_example.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/fastmcp_config/fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/fastmcp_config/full_example.fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/fastmcp_config/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/fastmcp_config/simple.fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/fastmcp_config_demo/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/fastmcp_config_demo/fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/fastmcp_config_demo/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/get_file.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/in_memory_proxy_example.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/memory.fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/memory.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/mount_example.fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/mount_example.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/screenshot.fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/screenshot.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/serializer.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/simple_echo.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/hub.fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/lights.fastmcp.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/pyproject.toml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/src/smart_home/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/src/smart_home/__main__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/src/smart_home/hub.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/src/smart_home/lights/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/src/smart_home/lights/hue_utils.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/src/smart_home/lights/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/src/smart_home/py.typed +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/smart_home/src/smart_home/settings.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/tags_example.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/tasks/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/tasks/client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/tasks/docker-compose.yml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/tasks/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/testing_demo/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/testing_demo/pyproject.toml +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/testing_demo/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/testing_demo/tests/test_server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/testing_demo/uv.lock +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/text_me.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/examples/tool_result_echo.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/justfile +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/logo.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/scripts/auto_close_duplicates.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/scripts/auto_close_needs_mre.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/__main__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/cli.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/install/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/install/claude_code.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/install/claude_desktop.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/install/cursor.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/install/gemini_cli.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/install/mcp_json.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/install/shared.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/run.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/cli/tasks.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/auth/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/auth/bearer.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/auth/oauth.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/elicitation.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/logging.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/messages.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/oauth_callback.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/progress.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/client/roots.py +0 -0
- {fastmcp-2.14.0/src/fastmcp/experimental/sampling → fastmcp-2.14.1/src/fastmcp/client/sampling/handlers}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/bulk_tool_caller/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/bulk_tool_caller/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/bulk_tool_caller/bulk_tool_caller.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/bulk_tool_caller/example.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/component_manager/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/component_manager/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/component_manager/component_manager.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/component_manager/component_service.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/component_manager/example.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/mcp_mixin/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/mcp_mixin/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/mcp_mixin/example.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/contrib/mcp_mixin/mcp_mixin.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/dependencies.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/exceptions.py +0 -0
- {fastmcp-2.14.0/src/fastmcp/experimental/sampling/handlers → fastmcp-2.14.1/src/fastmcp/experimental/sampling}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/experimental/server/openapi/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/experimental/utilities/openapi/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/mcp_config.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/prompts/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/prompts/prompt_manager.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/py.typed +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/resources/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/resources/resource_manager.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/resources/types.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/auth.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/handlers/authorize.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/jwt_issuer.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/middleware.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/oauth_proxy.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/oidc_proxy.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/auth0.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/aws.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/azure.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/debug.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/descope.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/discord.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/github.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/google.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/in_memory.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/introspection.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/jwt.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/oci.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/scalekit.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/supabase.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/providers/workos.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/auth/redirect_validation.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/dependencies.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/elicitation.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/event_store.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/http.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/low_level.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/middleware/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/middleware/caching.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/middleware/error_handling.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/middleware/logging.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/middleware/middleware.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/middleware/rate_limiting.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/middleware/timing.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/middleware/tool_injection.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/openapi/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/openapi/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/openapi/components.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/openapi/routing.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/openapi/server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/tasks/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/tasks/capabilities.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/tasks/config.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/tasks/handlers.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/tasks/keys.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/tasks/protocol.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/server/tasks/subscriptions.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/settings.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/tools/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/tools/tool_manager.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/tools/tool_transform.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/auth.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/cli.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/components.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/exceptions.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/http.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/inspect.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/json_schema.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/json_schema_type.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/logging.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_config.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/v1/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/v1/environments/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/v1/environments/base.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/v1/environments/uv.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/v1/mcp_server_config.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/v1/schema.json +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/v1/sources/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/v1/sources/base.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/mcp_server_config/v1/sources/filesystem.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/openapi/README.md +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/openapi/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/openapi/director.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/openapi/formatters.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/openapi/json_schema_converter.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/openapi/models.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/openapi/parser.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/openapi/schemas.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/tests.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/types.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/src/fastmcp/utilities/ui.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_cli.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_config.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_cursor.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_install.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_mcp_server_config_integration.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_mcp_server_config_schema.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_project_prepare.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_run.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_run_config.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_server_args.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_shared.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_tasks.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/cli/test_with_argv.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/auth/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/auth/test_oauth_client.py +0 -0
- {fastmcp-2.14.0/tests/client/transports → fastmcp-2.14.1/tests/client/sampling}/__init__.py +0 -0
- {fastmcp-2.14.0/tests/experimental → fastmcp-2.14.1/tests/client/sampling/handlers}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/tasks/conftest.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/tasks/test_client_prompt_tasks.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/tasks/test_client_resource_tasks.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/tasks/test_client_task_notifications.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/tasks/test_client_task_protocol.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/tasks/test_client_tool_tasks.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/tasks/test_task_context_validation.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/tasks/test_task_result_caching.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_elicitation.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_logs.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_notifications.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_oauth_callback_xss.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_openapi.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_progress.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_roots.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_sse.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_stdio.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/test_streamable_http.py +0 -0
- {fastmcp-2.14.0/tests/integration_tests → fastmcp-2.14.1/tests/client/transports}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/transports/test_transports.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/client/transports/test_uv_transport.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/contrib/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/contrib/test_bulk_tool_caller.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/contrib/test_component_manager.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/contrib/test_mcp_mixin.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/deprecated/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/deprecated/test_deprecated.py +0 -0
- /fastmcp-2.14.0/tests/server/test_tool_exclude_args.py → /fastmcp-2.14.1/tests/deprecated/test_exclude_args.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/deprecated/test_openapi_deprecations.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/deprecated/test_settings.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/experimental/README.md +0 -0
- {fastmcp-2.14.0/tests/integration_tests/auth → fastmcp-2.14.1/tests/experimental}/__init__.py +0 -0
- {fastmcp-2.14.0/tests/prompts → fastmcp-2.14.1/tests/integration_tests}/__init__.py +0 -0
- {fastmcp-2.14.0/tests/resources → fastmcp-2.14.1/tests/integration_tests/auth}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/integration_tests/auth/test_github_provider_integration.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/integration_tests/conftest.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/integration_tests/test_github_mcp_remote.py +0 -0
- {fastmcp-2.14.0/tests/server → fastmcp-2.14.1/tests/prompts}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/prompts/test_prompt.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/prompts/test_prompt_manager.py +0 -0
- {fastmcp-2.14.0/tests/server/auth → fastmcp-2.14.1/tests/resources}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/resources/test_file_resources.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/resources/test_function_resources.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/resources/test_resource_manager.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/resources/test_resource_template.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/resources/test_resource_template_meta.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/resources/test_resources.py +0 -0
- {fastmcp-2.14.0/tests/server/auth/providers → fastmcp-2.14.1/tests/server}/__init__.py +0 -0
- {fastmcp-2.14.0/tests/server/http → fastmcp-2.14.1/tests/server/auth}/__init__.py +0 -0
- {fastmcp-2.14.0/tests/server/middleware → fastmcp-2.14.1/tests/server/auth/providers}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_auth0.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_aws.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_azure.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_descope.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_discord.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_github.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_google.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_introspection.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_scalekit.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_supabase.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/providers/test_workos.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_auth_provider.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_debug_verifier.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_enhanced_error_responses.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_jwt_issuer.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_jwt_provider.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_oauth_consent_flow.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_oauth_mounting.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_oauth_proxy.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_oauth_proxy_redirect_validation.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_oauth_proxy_storage.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_oidc_proxy.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_redirect_validation.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_remote_auth_provider.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/auth/test_static_token_verifier.py +0 -0
- {fastmcp-2.14.0/tests/server/proxy → fastmcp-2.14.1/tests/server/http}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/http/test_bearer_auth_backend.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/http/test_custom_routes.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/http/test_http_auth_middleware.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/http/test_http_dependencies.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/http/test_http_middleware.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/http/test_stale_access_token.py +0 -0
- {fastmcp-2.14.0/tests/tools → fastmcp-2.14.1/tests/server/middleware}/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/middleware/test_caching.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/middleware/test_error_handling.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/middleware/test_initialization_middleware.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/middleware/test_logging.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/middleware/test_middleware.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/middleware/test_rate_limiting.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/middleware/test_timing.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/openapi/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/openapi/test_comprehensive.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/openapi/test_deepobject_style.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/openapi/test_end_to_end_compatibility.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/openapi/test_openapi_features.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/openapi/test_openapi_performance.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/openapi/test_parameter_collisions.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/openapi/test_performance_comparison.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/openapi/test_server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/proxy/test_proxy_server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/proxy/test_stateful_proxy_client.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/conftest.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_progress_dependency.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_server_tasks_parameter.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_sync_function_task_disabled.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_capabilities.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_config_modes.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_dependencies.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_metadata.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_methods.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_mount.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_prompts.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_protocol.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_proxy.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_resources.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_return_types.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_security.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_status_notifications.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_tools.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/tasks/test_task_ttl.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_app_state.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_auth_integration.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_dependencies.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_event_store.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_file_server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_icons.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_import_server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_input_validation.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_log_level.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_logging.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_run_server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_server.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_server_docket.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_server_interactions.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_server_lifespan.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_streamable_http_no_redirect.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_tool_annotations.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/server/test_tool_transformation.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/test_mcp_config.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/tools/test_tool.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/tools/test_tool_future_annotations.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/tools/test_tool_manager.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/tools/test_tool_transform.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/__init__.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/conftest.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/test_allof_requestbody.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/test_direct_array_schemas.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/test_director.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/test_legacy_compatibility.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/test_models.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/test_nullable_fields.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/test_parser.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/test_schemas.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/openapi/test_transitive_references.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/test_cli.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/test_components.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/test_inspect.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/test_json_schema.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/test_json_schema_type.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/test_logging.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/test_tests.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/test_typeadapter.py +0 -0
- {fastmcp-2.14.0 → fastmcp-2.14.1}/tests/utilities/test_types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastmcp
|
|
3
|
-
Version: 2.14.
|
|
3
|
+
Version: 2.14.1
|
|
4
4
|
Summary: The fast, Pythonic way to build MCP servers and clients.
|
|
5
5
|
Project-URL: Homepage, https://gofastmcp.com
|
|
6
6
|
Project-URL: Repository, https://github.com/jlowin/fastmcp
|
|
@@ -23,17 +23,19 @@ Requires-Dist: cyclopts>=4.0.0
|
|
|
23
23
|
Requires-Dist: exceptiongroup>=1.2.2
|
|
24
24
|
Requires-Dist: httpx>=0.28.1
|
|
25
25
|
Requires-Dist: jsonschema-path>=0.3.4
|
|
26
|
-
Requires-Dist: mcp>=1.
|
|
26
|
+
Requires-Dist: mcp>=1.24.0
|
|
27
27
|
Requires-Dist: openapi-pydantic>=0.5.1
|
|
28
28
|
Requires-Dist: platformdirs>=4.0.0
|
|
29
29
|
Requires-Dist: py-key-value-aio[disk,keyring,memory]<0.4.0,>=0.3.0
|
|
30
30
|
Requires-Dist: pydantic[email]>=2.11.7
|
|
31
|
-
Requires-Dist: pydocket>=0.15.
|
|
31
|
+
Requires-Dist: pydocket>=0.15.5
|
|
32
32
|
Requires-Dist: pyperclip>=1.9.0
|
|
33
33
|
Requires-Dist: python-dotenv>=1.1.0
|
|
34
34
|
Requires-Dist: rich>=13.9.4
|
|
35
35
|
Requires-Dist: uvicorn>=0.35
|
|
36
36
|
Requires-Dist: websockets>=15.0.1
|
|
37
|
+
Provides-Extra: anthropic
|
|
38
|
+
Requires-Dist: anthropic>=0.40.0; extra == 'anthropic'
|
|
37
39
|
Provides-Extra: openai
|
|
38
40
|
Requires-Dist: openai>=1.102.0; extra == 'openai'
|
|
39
41
|
Description-Content-Type: text/markdown
|
|
@@ -109,6 +109,14 @@ The sampling handler receives three parameters:
|
|
|
109
109
|
<ResponseField name="metadata" type="dict[str, Any] | None">
|
|
110
110
|
Optional metadata to pass through to the LLM provider.
|
|
111
111
|
</ResponseField>
|
|
112
|
+
|
|
113
|
+
<ResponseField name="tools" type="list[Tool] | None">
|
|
114
|
+
Optional list of tools the LLM can use during sampling. See [Using the OpenAI Handler](#using-the-openai-handler).
|
|
115
|
+
</ResponseField>
|
|
116
|
+
|
|
117
|
+
<ResponseField name="toolChoice" type="ToolChoice | None">
|
|
118
|
+
Optional control over tool usage behavior (`auto`, `required`, or `none`).
|
|
119
|
+
</ResponseField>
|
|
112
120
|
</Expandable>
|
|
113
121
|
|
|
114
122
|
</ResponseField>
|
|
@@ -153,4 +161,98 @@ client = Client(
|
|
|
153
161
|
|
|
154
162
|
<Note>
|
|
155
163
|
If the client doesn't provide a sampling handler, servers can optionally configure a fallback handler. See [Server Sampling](/servers/sampling#sampling-fallback-handler) for details.
|
|
156
|
-
</Note>
|
|
164
|
+
</Note>
|
|
165
|
+
|
|
166
|
+
## Sampling Capabilities
|
|
167
|
+
|
|
168
|
+
When you provide a `sampling_handler`, FastMCP automatically advertises full sampling capabilities to the server, including tool support. To disable tool support (for simpler handlers that don't support tools), pass `sampling_capabilities` explicitly:
|
|
169
|
+
|
|
170
|
+
```python
|
|
171
|
+
from mcp.types import SamplingCapability
|
|
172
|
+
|
|
173
|
+
client = Client(
|
|
174
|
+
"my_mcp_server.py",
|
|
175
|
+
sampling_handler=basic_handler,
|
|
176
|
+
sampling_capabilities=SamplingCapability(), # No tool support
|
|
177
|
+
)
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
## Built-in Handlers
|
|
181
|
+
|
|
182
|
+
FastMCP provides built-in sampling handlers for OpenAI and Anthropic APIs. These handlers support the full sampling API including tool use, handling message conversion and response formatting automatically.
|
|
183
|
+
|
|
184
|
+
### OpenAI Handler
|
|
185
|
+
|
|
186
|
+
<VersionBadge version="2.11.0" />
|
|
187
|
+
|
|
188
|
+
The OpenAI handler works with OpenAI's API and any OpenAI-compatible provider:
|
|
189
|
+
|
|
190
|
+
```python
|
|
191
|
+
from fastmcp import Client
|
|
192
|
+
from fastmcp.client.sampling.handlers.openai import OpenAISamplingHandler
|
|
193
|
+
|
|
194
|
+
client = Client(
|
|
195
|
+
"my_mcp_server.py",
|
|
196
|
+
sampling_handler=OpenAISamplingHandler(default_model="gpt-4o"),
|
|
197
|
+
)
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
For OpenAI-compatible APIs (like local models), pass a custom client:
|
|
201
|
+
|
|
202
|
+
```python
|
|
203
|
+
from openai import AsyncOpenAI
|
|
204
|
+
|
|
205
|
+
client = Client(
|
|
206
|
+
"my_mcp_server.py",
|
|
207
|
+
sampling_handler=OpenAISamplingHandler(
|
|
208
|
+
default_model="llama-3.1-70b",
|
|
209
|
+
client=AsyncOpenAI(base_url="http://localhost:8000/v1"),
|
|
210
|
+
),
|
|
211
|
+
)
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
<Note>
|
|
215
|
+
Install the OpenAI handler with `pip install fastmcp[openai]`.
|
|
216
|
+
</Note>
|
|
217
|
+
|
|
218
|
+
### Anthropic Handler
|
|
219
|
+
|
|
220
|
+
<VersionBadge version="2.14.1" />
|
|
221
|
+
|
|
222
|
+
The Anthropic handler uses Claude models via the Anthropic API:
|
|
223
|
+
|
|
224
|
+
```python
|
|
225
|
+
from fastmcp import Client
|
|
226
|
+
from fastmcp.client.sampling.handlers.anthropic import AnthropicSamplingHandler
|
|
227
|
+
|
|
228
|
+
client = Client(
|
|
229
|
+
"my_mcp_server.py",
|
|
230
|
+
sampling_handler=AnthropicSamplingHandler(default_model="claude-sonnet-4-5"),
|
|
231
|
+
)
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
You can pass a custom client for advanced configuration:
|
|
235
|
+
|
|
236
|
+
```python
|
|
237
|
+
from anthropic import AsyncAnthropic
|
|
238
|
+
|
|
239
|
+
client = Client(
|
|
240
|
+
"my_mcp_server.py",
|
|
241
|
+
sampling_handler=AnthropicSamplingHandler(
|
|
242
|
+
default_model="claude-sonnet-4-5",
|
|
243
|
+
client=AsyncAnthropic(), # Uses ANTHROPIC_API_KEY env var
|
|
244
|
+
),
|
|
245
|
+
)
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
<Note>
|
|
249
|
+
Install the Anthropic handler with `pip install fastmcp[anthropic]`.
|
|
250
|
+
</Note>
|
|
251
|
+
|
|
252
|
+
### Tool Execution
|
|
253
|
+
|
|
254
|
+
Tool execution happens on the server side. The client's role is to pass tools to the LLM and return the LLM's response (which may include tool use requests). The server then executes the tools and may send follow-up sampling requests with tool results.
|
|
255
|
+
|
|
256
|
+
<Tip>
|
|
257
|
+
To implement a custom sampling handler, see the [handler source code](https://github.com/jlowin/fastmcp/tree/main/src/fastmcp/client/sampling/handlers) as a reference.
|
|
258
|
+
</Tip>
|
|
@@ -183,13 +183,13 @@ capabilities, protocol version, and optional instructions.
|
|
|
183
183
|
- `RuntimeError`: If the client is not connected or initialization times out.
|
|
184
184
|
|
|
185
185
|
|
|
186
|
-
#### `close` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
186
|
+
#### `close` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L613" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
187
187
|
|
|
188
188
|
```python
|
|
189
189
|
close(self)
|
|
190
190
|
```
|
|
191
191
|
|
|
192
|
-
#### `ping` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
192
|
+
#### `ping` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L619" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
193
193
|
|
|
194
194
|
```python
|
|
195
195
|
ping(self) -> bool
|
|
@@ -198,7 +198,7 @@ ping(self) -> bool
|
|
|
198
198
|
Send a ping request.
|
|
199
199
|
|
|
200
200
|
|
|
201
|
-
#### `cancel` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
201
|
+
#### `cancel` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L624" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
202
202
|
|
|
203
203
|
```python
|
|
204
204
|
cancel(self, request_id: str | int, reason: str | None = None) -> None
|
|
@@ -207,7 +207,7 @@ cancel(self, request_id: str | int, reason: str | None = None) -> None
|
|
|
207
207
|
Send a cancellation notification for an in-progress request.
|
|
208
208
|
|
|
209
209
|
|
|
210
|
-
#### `progress` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
210
|
+
#### `progress` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L641" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
211
211
|
|
|
212
212
|
```python
|
|
213
213
|
progress(self, progress_token: str | int, progress: float, total: float | None = None, message: str | None = None) -> None
|
|
@@ -216,7 +216,7 @@ progress(self, progress_token: str | int, progress: float, total: float | None =
|
|
|
216
216
|
Send a progress notification.
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
#### `set_logging_level` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
219
|
+
#### `set_logging_level` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L653" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
220
220
|
|
|
221
221
|
```python
|
|
222
222
|
set_logging_level(self, level: mcp.types.LoggingLevel) -> None
|
|
@@ -225,7 +225,7 @@ set_logging_level(self, level: mcp.types.LoggingLevel) -> None
|
|
|
225
225
|
Send a logging/setLevel request.
|
|
226
226
|
|
|
227
227
|
|
|
228
|
-
#### `send_roots_list_changed` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
228
|
+
#### `send_roots_list_changed` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L657" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
229
229
|
|
|
230
230
|
```python
|
|
231
231
|
send_roots_list_changed(self) -> None
|
|
@@ -234,7 +234,7 @@ send_roots_list_changed(self) -> None
|
|
|
234
234
|
Send a roots/list_changed notification.
|
|
235
235
|
|
|
236
236
|
|
|
237
|
-
#### `list_resources_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
237
|
+
#### `list_resources_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L663" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
238
238
|
|
|
239
239
|
```python
|
|
240
240
|
list_resources_mcp(self) -> mcp.types.ListResourcesResult
|
|
@@ -250,7 +250,7 @@ containing the list of resources and any additional metadata.
|
|
|
250
250
|
- `RuntimeError`: If called while the client is not connected.
|
|
251
251
|
|
|
252
252
|
|
|
253
|
-
#### `list_resources` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
253
|
+
#### `list_resources` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L678" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
254
254
|
|
|
255
255
|
```python
|
|
256
256
|
list_resources(self) -> list[mcp.types.Resource]
|
|
@@ -265,7 +265,7 @@ Retrieve a list of resources available on the server.
|
|
|
265
265
|
- `RuntimeError`: If called while the client is not connected.
|
|
266
266
|
|
|
267
267
|
|
|
268
|
-
#### `list_resource_templates_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
268
|
+
#### `list_resource_templates_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L690" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
269
269
|
|
|
270
270
|
```python
|
|
271
271
|
list_resource_templates_mcp(self) -> mcp.types.ListResourceTemplatesResult
|
|
@@ -281,7 +281,7 @@ containing the list of resource templates and any additional metadata.
|
|
|
281
281
|
- `RuntimeError`: If called while the client is not connected.
|
|
282
282
|
|
|
283
283
|
|
|
284
|
-
#### `list_resource_templates` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
284
|
+
#### `list_resource_templates` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L707" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
285
285
|
|
|
286
286
|
```python
|
|
287
287
|
list_resource_templates(self) -> list[mcp.types.ResourceTemplate]
|
|
@@ -296,7 +296,7 @@ Retrieve a list of resource templates available on the server.
|
|
|
296
296
|
- `RuntimeError`: If called while the client is not connected.
|
|
297
297
|
|
|
298
298
|
|
|
299
|
-
#### `read_resource_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
299
|
+
#### `read_resource_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L721" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
300
300
|
|
|
301
301
|
```python
|
|
302
302
|
read_resource_mcp(self, uri: AnyUrl | str, meta: dict[str, Any] | None = None) -> mcp.types.ReadResourceResult
|
|
@@ -316,19 +316,19 @@ containing the resource contents and any additional metadata.
|
|
|
316
316
|
- `RuntimeError`: If called while the client is not connected.
|
|
317
317
|
|
|
318
318
|
|
|
319
|
-
#### `read_resource` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
319
|
+
#### `read_resource` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L762" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
320
320
|
|
|
321
321
|
```python
|
|
322
322
|
read_resource(self, uri: AnyUrl | str) -> list[mcp.types.TextResourceContents | mcp.types.BlobResourceContents]
|
|
323
323
|
```
|
|
324
324
|
|
|
325
|
-
#### `read_resource` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
325
|
+
#### `read_resource` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L770" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
326
326
|
|
|
327
327
|
```python
|
|
328
328
|
read_resource(self, uri: AnyUrl | str) -> ResourceTask
|
|
329
329
|
```
|
|
330
330
|
|
|
331
|
-
#### `read_resource` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
331
|
+
#### `read_resource` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L779" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
332
332
|
|
|
333
333
|
```python
|
|
334
334
|
read_resource(self, uri: AnyUrl | str) -> list[mcp.types.TextResourceContents | mcp.types.BlobResourceContents] | ResourceTask
|
|
@@ -350,7 +350,7 @@ A list of content objects if task=False, or a ResourceTask object if task=True.
|
|
|
350
350
|
- `RuntimeError`: If called while the client is not connected.
|
|
351
351
|
|
|
352
352
|
|
|
353
|
-
#### `list_prompts_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
353
|
+
#### `list_prompts_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L888" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
354
354
|
|
|
355
355
|
```python
|
|
356
356
|
list_prompts_mcp(self) -> mcp.types.ListPromptsResult
|
|
@@ -366,7 +366,7 @@ containing the list of prompts and any additional metadata.
|
|
|
366
366
|
- `RuntimeError`: If called while the client is not connected.
|
|
367
367
|
|
|
368
368
|
|
|
369
|
-
#### `list_prompts` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
369
|
+
#### `list_prompts` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L903" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
370
370
|
|
|
371
371
|
```python
|
|
372
372
|
list_prompts(self) -> list[mcp.types.Prompt]
|
|
@@ -381,7 +381,7 @@ Retrieve a list of prompts available on the server.
|
|
|
381
381
|
- `RuntimeError`: If called while the client is not connected.
|
|
382
382
|
|
|
383
383
|
|
|
384
|
-
#### `get_prompt_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
384
|
+
#### `get_prompt_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L916" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
385
385
|
|
|
386
386
|
```python
|
|
387
387
|
get_prompt_mcp(self, name: str, arguments: dict[str, Any] | None = None, meta: dict[str, Any] | None = None) -> mcp.types.GetPromptResult
|
|
@@ -402,19 +402,19 @@ containing the prompt messages and any additional metadata.
|
|
|
402
402
|
- `RuntimeError`: If called while the client is not connected.
|
|
403
403
|
|
|
404
404
|
|
|
405
|
-
#### `get_prompt` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
405
|
+
#### `get_prompt` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L974" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
406
406
|
|
|
407
407
|
```python
|
|
408
408
|
get_prompt(self, name: str, arguments: dict[str, Any] | None = None) -> mcp.types.GetPromptResult
|
|
409
409
|
```
|
|
410
410
|
|
|
411
|
-
#### `get_prompt` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
411
|
+
#### `get_prompt` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L983" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
412
412
|
|
|
413
413
|
```python
|
|
414
414
|
get_prompt(self, name: str, arguments: dict[str, Any] | None = None) -> PromptTask
|
|
415
415
|
```
|
|
416
416
|
|
|
417
|
-
#### `get_prompt` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
417
|
+
#### `get_prompt` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L993" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
418
418
|
|
|
419
419
|
```python
|
|
420
420
|
get_prompt(self, name: str, arguments: dict[str, Any] | None = None) -> mcp.types.GetPromptResult | PromptTask
|
|
@@ -437,7 +437,7 @@ or a PromptTask object if task=True.
|
|
|
437
437
|
- `RuntimeError`: If called while the client is not connected.
|
|
438
438
|
|
|
439
439
|
|
|
440
|
-
#### `complete_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
440
|
+
#### `complete_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1085" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
441
441
|
|
|
442
442
|
```python
|
|
443
443
|
complete_mcp(self, ref: mcp.types.ResourceTemplateReference | mcp.types.PromptReference, argument: dict[str, str], context_arguments: dict[str, Any] | None = None) -> mcp.types.CompleteResult
|
|
@@ -459,7 +459,7 @@ containing the completion and any additional metadata.
|
|
|
459
459
|
- `RuntimeError`: If called while the client is not connected.
|
|
460
460
|
|
|
461
461
|
|
|
462
|
-
#### `complete` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
462
|
+
#### `complete` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1113" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
463
463
|
|
|
464
464
|
```python
|
|
465
465
|
complete(self, ref: mcp.types.ResourceTemplateReference | mcp.types.PromptReference, argument: dict[str, str], context_arguments: dict[str, Any] | None = None) -> mcp.types.Completion
|
|
@@ -480,7 +480,7 @@ include with the completion request. Defaults to None.
|
|
|
480
480
|
- `RuntimeError`: If called while the client is not connected.
|
|
481
481
|
|
|
482
482
|
|
|
483
|
-
#### `list_tools_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
483
|
+
#### `list_tools_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1140" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
484
484
|
|
|
485
485
|
```python
|
|
486
486
|
list_tools_mcp(self) -> mcp.types.ListToolsResult
|
|
@@ -496,7 +496,7 @@ containing the list of tools and any additional metadata.
|
|
|
496
496
|
- `RuntimeError`: If called while the client is not connected.
|
|
497
497
|
|
|
498
498
|
|
|
499
|
-
#### `list_tools` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
499
|
+
#### `list_tools` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1155" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
500
500
|
|
|
501
501
|
```python
|
|
502
502
|
list_tools(self) -> list[mcp.types.Tool]
|
|
@@ -511,7 +511,7 @@ Retrieve a list of tools available on the server.
|
|
|
511
511
|
- `RuntimeError`: If called while the client is not connected.
|
|
512
512
|
|
|
513
513
|
|
|
514
|
-
#### `call_tool_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
514
|
+
#### `call_tool_mcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1169" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
515
515
|
|
|
516
516
|
```python
|
|
517
517
|
call_tool_mcp(self, name: str, arguments: dict[str, Any], progress_handler: ProgressHandler | None = None, timeout: datetime.timedelta | float | int | None = None, meta: dict[str, Any] | None = None) -> mcp.types.CallToolResult
|
|
@@ -540,19 +540,19 @@ containing the tool result and any additional metadata.
|
|
|
540
540
|
- `RuntimeError`: If called while the client is not connected.
|
|
541
541
|
|
|
542
542
|
|
|
543
|
-
#### `call_tool` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
543
|
+
#### `call_tool` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1282" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
544
544
|
|
|
545
545
|
```python
|
|
546
546
|
call_tool(self, name: str, arguments: dict[str, Any] | None = None) -> CallToolResult
|
|
547
547
|
```
|
|
548
548
|
|
|
549
|
-
#### `call_tool` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
549
|
+
#### `call_tool` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1295" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
550
550
|
|
|
551
551
|
```python
|
|
552
552
|
call_tool(self, name: str, arguments: dict[str, Any] | None = None) -> ToolTask
|
|
553
553
|
```
|
|
554
554
|
|
|
555
|
-
#### `call_tool` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
555
|
+
#### `call_tool` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1309" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
556
556
|
|
|
557
557
|
```python
|
|
558
558
|
call_tool(self, name: str, arguments: dict[str, Any] | None = None) -> CallToolResult | ToolTask
|
|
@@ -590,7 +590,7 @@ raw result object.
|
|
|
590
590
|
- `RuntimeError`: If called while the client is not connected.
|
|
591
591
|
|
|
592
592
|
|
|
593
|
-
#### `get_task_status` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
593
|
+
#### `get_task_status` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1431" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
594
594
|
|
|
595
595
|
```python
|
|
596
596
|
get_task_status(self, task_id: str) -> GetTaskResult
|
|
@@ -610,7 +610,7 @@ Sends a 'tasks/get' MCP protocol request over the existing transport.
|
|
|
610
610
|
- `RuntimeError`: If client not connected
|
|
611
611
|
|
|
612
612
|
|
|
613
|
-
#### `get_task_result` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
613
|
+
#### `get_task_result` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1451" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
614
614
|
|
|
615
615
|
```python
|
|
616
616
|
get_task_result(self, task_id: str) -> Any
|
|
@@ -631,7 +631,7 @@ Returns the raw result - callers should parse it appropriately.
|
|
|
631
631
|
- `RuntimeError`: If client not connected, task not found, or task failed
|
|
632
632
|
|
|
633
633
|
|
|
634
|
-
#### `list_tasks` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
634
|
+
#### `list_tasks` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1477" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
635
635
|
|
|
636
636
|
```python
|
|
637
637
|
list_tasks(self, cursor: str | None = None, limit: int = 50) -> dict[str, Any]
|
|
@@ -656,7 +656,7 @@ querying status for locally tracked task IDs.
|
|
|
656
656
|
- `RuntimeError`: If client not connected
|
|
657
657
|
|
|
658
658
|
|
|
659
|
-
#### `cancel_task` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
659
|
+
#### `cancel_task` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1524" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
660
660
|
|
|
661
661
|
```python
|
|
662
662
|
cancel_task(self, task_id: str) -> mcp.types.CancelTaskResult
|
|
@@ -677,7 +677,7 @@ and transition to cancelled state.
|
|
|
677
677
|
- `RuntimeError`: If task doesn't exist
|
|
678
678
|
|
|
679
679
|
|
|
680
|
-
#### `generate_name` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#
|
|
680
|
+
#### `generate_name` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/client.py#L1546" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
681
681
|
|
|
682
682
|
```python
|
|
683
683
|
generate_name(cls, name: str | None = None) -> str
|
|
@@ -7,7 +7,7 @@ sidebarTitle: transports
|
|
|
7
7
|
|
|
8
8
|
## Functions
|
|
9
9
|
|
|
10
|
-
### `infer_transport` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/transports.py#
|
|
10
|
+
### `infer_transport` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/transports.py#L1058" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
11
11
|
|
|
12
12
|
```python
|
|
13
13
|
infer_transport(transport: ClientTransport | FastMCP | FastMCP1Server | AnyUrl | Path | MCPConfig | dict[str, Any] | str) -> ClientTransport
|
|
@@ -246,7 +246,7 @@ tests or scenarios where client and server run in the same runtime.
|
|
|
246
246
|
connect_session(self, **session_kwargs: Unpack[SessionKwargs]) -> AsyncIterator[ClientSession]
|
|
247
247
|
```
|
|
248
248
|
|
|
249
|
-
### `MCPConfigTransport` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/transports.py#
|
|
249
|
+
### `MCPConfigTransport` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/transports.py#L924" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
250
250
|
|
|
251
251
|
|
|
252
252
|
Transport for connecting to one or more MCP servers defined in an MCPConfig.
|
|
@@ -299,13 +299,13 @@ async with client:
|
|
|
299
299
|
|
|
300
300
|
**Methods:**
|
|
301
301
|
|
|
302
|
-
#### `connect_session` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/transports.py#
|
|
302
|
+
#### `connect_session` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/transports.py#L1006" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
303
303
|
|
|
304
304
|
```python
|
|
305
305
|
connect_session(self, **session_kwargs: Unpack[SessionKwargs]) -> AsyncIterator[ClientSession]
|
|
306
306
|
```
|
|
307
307
|
|
|
308
|
-
#### `close` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/transports.py#
|
|
308
|
+
#### `close` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/client/transports.py#L1012" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
309
309
|
|
|
310
310
|
```python
|
|
311
311
|
close(self)
|
|
@@ -7,7 +7,7 @@ sidebarTitle: low_level
|
|
|
7
7
|
|
|
8
8
|
## Classes
|
|
9
9
|
|
|
10
|
-
### `MiddlewareServerSession` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#
|
|
10
|
+
### `MiddlewareServerSession` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#L33" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
ServerSession that routes initialization requests through FastMCP middleware.
|
|
@@ -15,7 +15,7 @@ ServerSession that routes initialization requests through FastMCP middleware.
|
|
|
15
15
|
|
|
16
16
|
**Methods:**
|
|
17
17
|
|
|
18
|
-
#### `fastmcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#
|
|
18
|
+
#### `fastmcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#L43" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
19
19
|
|
|
20
20
|
```python
|
|
21
21
|
fastmcp(self) -> FastMCP
|
|
@@ -24,11 +24,11 @@ fastmcp(self) -> FastMCP
|
|
|
24
24
|
Get the FastMCP instance.
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
### `LowLevelServer` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#
|
|
27
|
+
### `LowLevelServer` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#L130" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
28
28
|
|
|
29
29
|
**Methods:**
|
|
30
30
|
|
|
31
|
-
#### `fastmcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#
|
|
31
|
+
#### `fastmcp` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#L144" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
32
32
|
|
|
33
33
|
```python
|
|
34
34
|
fastmcp(self) -> FastMCP
|
|
@@ -37,13 +37,13 @@ fastmcp(self) -> FastMCP
|
|
|
37
37
|
Get the FastMCP instance.
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
#### `create_initialization_options` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#
|
|
40
|
+
#### `create_initialization_options` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#L151" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
41
41
|
|
|
42
42
|
```python
|
|
43
43
|
create_initialization_options(self, notification_options: NotificationOptions | None = None, experimental_capabilities: dict[str, dict[str, Any]] | None = None, **kwargs: Any) -> InitializationOptions
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
#### `run` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#
|
|
46
|
+
#### `run` <sup><a href="https://github.com/jlowin/fastmcp/blob/main/src/fastmcp/server/low_level.py#L166" target="_blank"><Icon icon="github" style="width: 14px; height: 14px;" /></a></sup>
|
|
47
47
|
|
|
48
48
|
```python
|
|
49
49
|
run(self, read_stream: MemoryObjectReceiveStream[SessionMessage | Exception], write_stream: MemoryObjectSendStream[SessionMessage], initialization_options: InitializationOptions, raise_exceptions: bool = False, stateless: bool = False)
|