We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/allen-munsch/mcp-prefect'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
from enum import Enum
class APIType(str, Enum):
"""Enumeration of available API types in the MCP Prefect server."""
# Core workflow components
FLOW = "flow"
FLOW_RUN = "flow_run"
DEPLOYMENT = "deployment"
TASK_RUN = "task_run"
EVENT = "event"
# Infrastructure and execution
WORKSPACE = "workspace"
WORK_POOL = "work_pool"
WORK_QUEUE = "work_queue"
WORKER = "WORKER"
# Configuration and storage
BLOCK = "block"
VARIABLE = "variable"
# Observability and control
ARTIFACT = "artifact"
LOG = "log"
AUTOMATION = "automation"
CONCURRENCY_LIMIT = "concurrency_limit"
SLA = "sla"
OTHER = "other"
# Internal
_MCP_INTERNAL = "_mcp_internal"