MCP server for interacting with Prefect
Project description
prefect-mcp-server
[!WARNING] This project is under active development and may change drastically at any time.
This is an experimental MCP server for Prefect. APIs, features, and behaviors are subject to change without notice. We encourage you to try it out, provide feedback, and contribute. Please create issues or open PRs with your ideas and suggestions.
An MCP server for interacting with prefect resources.
The server gives MCP clients read-only tools for inspecting Prefect Cloud and self-hosted Prefect instances, plus a docs proxy so assistants can look up current Prefect CLI, SDK, and deployment guidance.
Choose Your Setup
| Use case | Recommended setup | Authentication |
|---|---|---|
| Prefect Cloud with no local API key | Prefect Cloud OAuth MCP | Browser OAuth with workspace consent |
| Claude Code on your machine | Claude Code plugin | Active local Prefect profile |
| Local MCP client | uvx stdio server |
Active local Prefect profile or env vars |
| Self-hosted Prefect or custom Cloud workspace | Self-hosted HTTP or stdio server | API key, basic auth, env vars, or headers |
| Team-operated shared server | HTTP deployment with per-request headers | User or service-account credentials in headers |
Prefect Cloud OAuth MCP
Use this path when you want a remote MCP URL that authenticates to Prefect Cloud in the browser instead of asking users to create or paste API keys.
[!NOTE] Prefect Cloud OAuth MCP is an experimental deployment path. It is available only where Prefect Cloud MCP OAuth is enabled.
claude mcp add prefect-cloud \
--transport http https://prefect-cloud-mcp-server.fastmcp.app/mcp
The MCP client discovers the OAuth metadata from the server, opens a browser for Prefect Cloud authentication, and asks the user to choose the workspaces this MCP client may read. After authentication, the assistant can list the consented workspaces and call the same read-only Prefect tools against those workspaces.
Cloud OAuth mode:
- uses HTTP MCP OAuth, not stdio credentials
- does not require
PREFECT_API_KEYin the MCP client - limits workspace-scoped tools to the workspaces selected during consent
- requires workspace-scoped tool calls to include a
workspace_id - keeps the shared read-only tool definitions from this repository
Useful first prompts:
- "Tell me what Prefect workspaces you can access."
- "Look across all authorized workspaces and summarize recent failed flow runs."
- "Compare deployment health between my staging and production workspaces."
[!NOTE] The Cloud OAuth MCP path is for Prefect Cloud. Local stdio usage and self-hosted Prefect deployments continue to use local profiles, environment variables, API keys, basic auth, or HTTP headers.
Claude Code Plugin
The easiest local setup for Claude Code is the Prefect plugin:
# add from marketplace
/plugin marketplace add prefecthq/prefect-mcp-server
# install the plugin
/plugin install prefect
This installs both the MCP server for read-only diagnostics and a CLI skill for mutations like triggering deployments or cancelling runs.
[!NOTE] The plugin uses your local Prefect configuration from
~/.prefect/profiles.toml. For explicit credentials, use the localuvxsetup below.
Run Locally
When running the MCP server locally with stdio transport, it automatically uses your local Prefect configuration from ~/.prefect/profiles.toml if available.
# minimal setup - inherits from local Prefect profile
claude mcp add prefect \
-- uvx --from prefect-mcp prefect-mcp-server
# or explicitly set credentials
claude mcp add prefect \
-e PREFECT_API_URL=https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID] \
-e PREFECT_API_KEY=your-cloud-api-key \
-- uvx --from prefect-mcp prefect-mcp-server
[!NOTE] For self-hosted Prefect servers with basic auth, use
PREFECT_API_AUTH_STRINGinstead ofPREFECT_API_KEY.
[!TIP] Prefect Cloud users on Team, Pro, and Enterprise plans can use service accounts for API authentication. Pro and Enterprise users can restrict service accounts to read-only access since this MCP server requires no write permissions.
Deploy Your Own Server
Deploy your own server when you need a custom Prefect API target, self-hosted Prefect, a private network, or an API-key-based team deployment.
-
Fork this repository on GitHub:
gh repo fork prefecthq/prefect-mcp-server
-
Deploy it on Prefect Horizon or FastMCP Cloud.
-
Configure the server:
- server path:
src/prefect_mcp_server/server.py - requirements:
pyproject.toml - environment variables:
PREFECT_API_URL:https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]PREFECT_API_KEY: your Prefect Cloud API keyPREFECT_API_AUTH_STRING: basic auth credentials for self-hosted Prefect, if needed
- server path:
-
Add the deployed HTTP URL to your MCP client:
claude mcp add prefect --transport http https://your-server-name.fastmcp.app/mcp
[!NOTE] For self-hosted deployments, environment variables are configured on the deployed MCP server, not in your MCP client configuration. The MCP host authenticates access to the MCP server, while this server uses the configured Prefect credentials to access Prefect.
Cloud OAuth Deployment Entrypoint
Prefect-operated Cloud OAuth deployments use a dedicated entrypoint:
- server path:
src/prefect_mcp_server/cloud.py - required runtime secret:
PREFECT_MCP_CLOUD_AUTH_TOKEN_KEY - optional environment selector:
PREFECT_MCP_CLOUD_ENVIRONMENT=stgorprod
This entrypoint reuses the same read-only tool definitions as the local/API-key server, adds Prefect Cloud OAuth, and adds Cloud OAuth-only workspace discovery. If OAuth is not configured, the Cloud OAuth entrypoint fails at import time instead of starting an unprotected server.
Cloud OAuth mode is selected by deploying src/prefect_mcp_server/cloud.py. The token key is the required runtime secret for validating Prefect Cloud-issued MCP OAuth access tokens; it is not a user-provided Prefect API key.
Cloud OAuth configuration reference
Cloud OAuth settings use the PREFECT_MCP_CLOUD_ prefix:
| Environment variable | Purpose |
|---|---|
PREFECT_MCP_CLOUD_AUTH_TOKEN_KEY |
Required signing/verification key for Prefect Cloud issued MCP OAuth access tokens |
PREFECT_MCP_CLOUD_ENVIRONMENT |
prod, stg, or local; defaults to prod |
PREFECT_MCP_CLOUD_API_BASE_URL |
Optional override for the Prefect API base URL |
PREFECT_MCP_CLOUD_AUTH_BASE_URL |
Optional override for auth helper endpoints |
PREFECT_MCP_CLOUD_AUTHORIZATION_SERVER |
Optional override for advertised OAuth authorization server |
PREFECT_MCP_CLOUD_PUBLIC_BASE_URL |
Public base URL for the hosted MCP server |
PREFECT_MCP_PUBLIC_BASE_URL |
Legacy alias for the public base URL |
Multi-tenant deployments with HTTP headers
For centrally-hosted deployments where multiple users connect to the same MCP server instance, credentials can be passed via HTTP headers instead of environment variables. This enables each request to authenticate with its own Prefect workspace.
Supported headers:
X-Prefect-Api-Url: Prefect API URL, required for both Cloud and self-hosted PrefectX-Prefect-Api-Key: Prefect Cloud API keyX-Prefect-Api-Auth-String: basic auth credentials for self-hosted Prefect, formatted asusername:password
Claude Code CLI:
claude mcp add-json prefect '{
"type": "http",
"url": "https://your-server.fastmcp.app/mcp",
"headers": {
"X-Prefect-Api-Url": "https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]",
"X-Prefect-Api-Key": "your-api-key"
}
}'
Claude Desktop app:
{
"mcpServers": {
"prefect": {
"type": "http",
"url": "https://your-server.fastmcp.app/mcp",
"headers": {
"X-Prefect-Api-Url": "https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]",
"X-Prefect-Api-Key": "your-api-key"
}
}
}
}
Python with FastMCP client:
from fastmcp.client import Client
from fastmcp.client.transports import StreamableHttpTransport
headers = {
"X-Prefect-Api-Url": "https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]",
"X-Prefect-Api-Key": "your-api-key",
}
transport = StreamableHttpTransport(
url="https://your-server.fastmcp.app/mcp",
headers=headers,
)
client = Client(transport=transport)
async with client:
result = await client.call_tool("get_identity", {})
print(result)
[!NOTE] When HTTP headers are provided, they take precedence over environment variables. If no headers are present, the server falls back to the configured environment variables or local Prefect profile.
Other MCP Clients
Configuration examples
This MCP server works with any MCP-compatible client. Most local clients use the same stdio command and optional environment variables.
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"prefect": {
"command": "uvx",
"args": ["--from", "prefect-mcp", "prefect-mcp-server"],
"env": {
"PREFECT_API_URL": "https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]",
"PREFECT_API_KEY": "your-api-key"
}
}
}
}
Codex CLI:
codex mcp add prefect -- uvx --from prefect-mcp prefect-mcp-server
codex mcp add prefect \
--env PREFECT_API_URL=https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID] \
--env PREFECT_API_KEY=your-api-key \
-- uvx --from prefect-mcp prefect-mcp-server
Or edit ~/.codex/config.toml directly:
[mcp.prefect]
command = "uvx"
args = ["--from", "prefect-mcp", "prefect-mcp-server"]
[mcp.prefect.env]
PREFECT_API_URL = "https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]"
PREFECT_API_KEY = "your-api-key"
Gemini CLI:
gemini mcp add prefect uvx --from prefect-mcp prefect-mcp-server
gemini mcp add prefect \
-e PREFECT_API_URL=https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID] \
-e PREFECT_API_KEY=your-api-key \
uvx --from prefect-mcp prefect-mcp-server
Or edit ~/.gemini/settings.json directly:
{
"mcpServers": {
"prefect": {
"command": "uvx",
"args": ["--from", "prefect-mcp", "prefect-mcp-server"],
"env": {
"PREFECT_API_URL": "https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]",
"PREFECT_API_KEY": "your-api-key"
}
}
}
}
Kiro (~/.kiro/settings/mcp.json):
{
"mcpServers": {
"prefect": {
"command": "uvx",
"args": ["--from", "prefect-mcp", "prefect-mcp-server"],
"env": {
"PREFECT_API_URL": "https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]",
"PREFECT_API_KEY": "your-api-key"
}
}
}
}
VS Code with GitHub Copilot (.vscode/mcp.json):
{
"servers": {
"prefect": {
"command": "uvx",
"args": ["--from", "prefect-mcp", "prefect-mcp-server"],
"env": {
"PREFECT_API_URL": "https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]",
"PREFECT_API_KEY": "your-api-key"
}
}
}
}
Windsurf (~/.codeium/windsurf/mcp_config.json):
{
"mcpServers": {
"prefect": {
"command": "uvx",
"args": ["--from", "prefect-mcp", "prefect-mcp-server"],
"env": {
"PREFECT_API_URL": "https://api.prefect.cloud/api/accounts/[ACCOUNT_ID]/workspaces/[WORKSPACE_ID]",
"PREFECT_API_KEY": "your-api-key"
}
}
}
}
[!TIP] Most MCP clients follow a similar configuration pattern. If your client is not listed here, check its documentation for MCP server configuration. The
command,args, andenvvalues above usually work with minor adjustments to the config format.
Capabilities
This server enables MCP clients to interact with Prefect read-only APIs:
Monitoring and inspection
- View dashboard overviews with flow run statistics and work pool status
- Query deployments, flows, flow runs, task runs, work pools, and automations with advanced filtering
- Retrieve detailed execution logs from flow runs
- Track events across your workflow ecosystem
- Review rate limit usage for Prefect Cloud
Cloud OAuth workspace access
- Authenticate with Prefect Cloud using browser OAuth
- List workspaces selected during consent
- Ask cross-workspace diagnostic questions across the authorized workspace set
Documentation access
- Search current Prefect documentation through the mounted docs MCP server
- Find current CLI and SDK syntax for write operations
- Look up deployment, work pool, and automation patterns
Intelligent debugging
- Get contextual guidance for troubleshooting failed flow runs
- Diagnose deployment issues, including concurrency problems and unhealthy work pools
- Identify root causes of workflow failures
Development
Setup and testing
# clone the repo
gh repo clone prefecthq/prefect-mcp-server && cd prefect-mcp-server
# install dev deps and pre-commit hooks
just setup
# run tests
just test
Evals
This project includes scenario tests that connect Pydantic AI agents to the MCP server and validate that they can solve realistic Prefect support tasks. See evals/README.md.
Evals should be written like support case reproductions: set up a workspace state that represents a real customer problem, ask the agent the kind of question a user or support engineer would ask, and verify the final answer identifies the concrete cause or next action. Protocol behavior such as OAuth token validation belongs in unit tests; evals should prove that the MCP server helps an agent solve user-facing Prefect problems.
uv run pytest evals
Links
- FastMCP - the framework used to build this MCP server
- Prefect Horizon - managed MCP deployment
- Prefect - workflow orchestration
- Model Context Protocol - the MCP specification
- Claude Code - an MCP client
mcp-name: io.github.PrefectHQ/prefect-mcp-server
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file prefect_mcp-0.0.1b11.tar.gz.
File metadata
- Download URL: prefect_mcp-0.0.1b11.tar.gz
- Upload date:
- Size: 431.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab415f8ca6d7a0525c1589e34b7d04038aa7702aed83ee2b6d29c91a5e342d89
|
|
| MD5 |
7d17d5e80815e6f0fbe0eb85edbd1b0c
|
|
| BLAKE2b-256 |
47bbac76db2c3f1c3a2f986581758073590168949956b3a3ef95318ea4247e77
|
File details
Details for the file prefect_mcp-0.0.1b11-py3-none-any.whl.
File metadata
- Download URL: prefect_mcp-0.0.1b11-py3-none-any.whl
- Upload date:
- Size: 43.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
016def676e71b5f4925a5dc64cca9204f5fa32f1210c401af8d9cb364435f823
|
|
| MD5 |
020fe4d1881fdfd2e6d40a11be19c758
|
|
| BLAKE2b-256 |
094d4a9ba4f6193bf8f5b9449a3001b272e4045354ab16bbbdacdaf9f73cf63f
|