QMCP
Exposes a Prometheus-compatible /metrics endpoint to enable monitoring and tracking of server performance and tool invocation metrics.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@QMCPlist all available tools and recent invocation history"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
QMCP - Model Context Protocol Server
An AI assistant can only use a tool somebody has exposed to it. qmcp is the server that does the exposing: it publishes your tools, runs them when an assistant asks, records every invocation, and stops for a human when a step needs one.
It speaks the Model Context Protocol, so any client that speaks it can use these tools without being told about them in advance. Built with FastAPI.
Features
✅ Tool Discovery - List available tools via
/v1/tools✅ Tool Invocation - Execute tools via
/v1/tools/{name}✅ Invocation History - Audit trail via
/v1/invocations✅ Human-in-the-Loop - Request human input via
/v1/human/*✅ Persistence - SQLite with SQLModel/aiosqlite
✅ Python Client -
qmcp.client.MCPClientfor workflows✅ Metaflow Examples - Ready-to-use flow templates
✅ Agent Framework - SQLModel schemas + mixins for agent types/topologies
✅ PydanticAI Integration - Create agents from QMCP models with full audit trail
✅ Structured Logging - JSON logs with structlog
✅ Request Tracing - Correlation IDs across requests
✅ Metrics - Prometheus-compatible
/metricsendpoint✅ CLI Interface - Manage via
qmcpcommand
Related MCP server: AI Agent MCP Server
Quick Start
# Install dependencies
uv sync
# Start the server
uv run qmcp serve
# Or with development reload
uv run qmcp serve --reloadSee quickstart.md for a copy-paste walkthrough.
Three commands worth knowing before the rest:
uv run qmcp topology show governed --level 2 # the seam a model is called through
uv run qmcp orchestration plane # what every shape would do, declared
uv run qmcp human list # what is waiting on a personThe first is the one to read. Model output reaches the human queue through one
door, and docs/human_in_loop.md says what that door does and does not enforce.
Adoption and Onboarding
Adoption checklist:
Decide how the server is hosted (local, container, or VM) and who can reach it.
Set
QMCP_HOST,QMCP_PORT, andQMCP_DATABASE_URLfor your environment.Standardize
X-Correlation-IDvalues for audit trails across clients.Decide how humans submit HITL responses (UI or API).
Wire
/metricsinto your monitoring stack.
Onboarding path:
uv sync --all-extrasRun the end-to-end tutorial below.
uv run qmcp servefor local exploration.
End-to-End Tutorial (HITL approval workflow)
This tutorial mirrors the end-to-end test
tests/test_hitl.py::TestHITLWorkflow::test_complete_approval_workflow.
Copy and paste:
uv sync --all-extras
uv run pytest tests/test_hitl.py::TestHITLWorkflow::test_complete_approval_workflow -vClient Library
from qmcp.client import MCPClient
with MCPClient(base_url="http://localhost:3141") as client:
# List tools
tools = client.list_tools()
# Invoke a tool
result = client.invoke_tool("echo", {"message": "Hello!"})
print(result.result)
# Human-in-the-loop
request = client.create_human_request(
request_id="approval-001",
request_type="approval",
prompt="Approve deployment?",
options=["approve", "reject"]
)
response = client.wait_for_response("approval-001", timeout=3600)See docs/client.md for full API documentation.
Validating itself, and the human loop
qmcp can be pointed at its own repository. Each check is a real subprocess,
recorded as the same invocation row the server writes when a tool is called over
HTTP — so qmcp dashboard reads a self-check back like anything else.
# run this repository's own gates, recording each one
qmcp selfcheck --database run.db
# a failing check raises a question. What is waiting on a person:
qmcp human list --database run.db
# answer it. This is a person acting, and it is recorded as one:
qmcp human respond selfcheck-tag-claims defer --database run.db --by "your name"A failing check becomes a unit of work; a passing one becomes nothing, because a
green gate is not work. It opens at brainstorm — noticing is not deciding —
and moves to planning once somebody answers. It goes no further: re-running a
check cannot establish that anybody acted on it.
walkthrough/02-a-run-that-found-something.md executes the whole thing, with
real subprocesses.
The pair. qmcp is the harness; dossier is the control panel. Neither imports the other — what crosses is a schema, and an address names the same row on both sides:
qmcp selfcheck --database run.db --deltas > deltas.json # units of work
qmcp dashboard --database run.db --json > harness.json # what has run
# then, in dossier: dossier deltas ingest / dossier harness ingestCLI Commands
# Start the server
qmcp serve [--host HOST] [--port PORT] [--reload]
# Start the server for Docker-based flows
qmcp cookbook serve [--host 0.0.0.0] [--port PORT] [--reload]
# List registered tools
qmcp tools list
# Show configuration
qmcp info
# Run a cookbook flow in Docker
qmcp cookbook simple-plan --goal "Deploy a web service"
# Start the server + run a cookbook flow (unified dev)
qmcp cookbook dev simple-plan --goal "Deploy a web service"
# Run a cookbook flow via the generic runner
qmcp cookbook run simple-plan --goal "Deploy a web service"
# Run other cookbook recipes (flow args are passed through)
qmcp cookbook run approved-deploy --service "api-gateway" --environment "staging"
qmcp cookbook dev local-qc-gauntlet --change-summary "Add audit fields" --target-area "metrics, logging"
# Run a cookbook flow in Docker explicitly
qmcp cookbook docker simple-plan --goal "Deploy a web service"
# If the qmcp shim cannot be installed (Windows)
uv run --no-sync python -m qmcp cookbook run simple-plan --goal "Deploy a web service"
# Run tests with auto setup/teardown
qmcp test [-v] [--coverage] [TEST_PATH]Cookbook flows run in Docker and require Docker Desktop (Linux engine).
Add --no-sync to skip syncing flow dependencies if the image is already built.
API Endpoints
Endpoint | Method | Description |
| GET | Health check |
| GET | List available tools |
| POST | Invoke a tool |
| GET | List invocation history |
| GET | Get single invocation |
| POST | Create human request |
| GET | List human requests |
| GET | Get request with response |
| POST | Submit human response |
| GET | Prometheus metrics |
| GET | Metrics as JSON |
Built-in Tools
echo - Echo input back (for testing)
planner - Create execution plans
executor - Execute approved plans
reviewer - Review and assess results
Development
# Install dev dependencies
uv sync --all-extras
# Run tests (with auto cleanup)
uv run qmcp test -v
# Run tests with coverage
uv run qmcp test --coverage
# Run linter
uv run ruff check .Architecture
See docs/architecture.md for the full architectural overview.
The system follows a three-plane architecture:
Client/Orchestration - Metaflow workflows (MCP client)
MCP Server - FastAPI service (this project)
Execution/Storage - Tools and database
Documentation
Quickstart - Copy-paste setup and validation
Overview - What and why
Architecture - How and constraints
Tools - Tool capabilities
Client Library - Python client API
Human-in-the-Loop - HITL guide
Agent Framework - Agent schemas and mixins
PydanticAI Integration - Agent runtime integration
Deployment - Production deployment guide
Contributing - Development guidelines
Roadmap - Development phases
Example Flows
See examples/flows/ for Metaflow integration examples:
simple_plan.py - Basic tool invocation
approved_deploy.py - HITL approval workflow
local_agent_chain.py - Local LLM plan -> review -> refine with SQLModel artifacts
local_qc_gauntlet.py - Local LLM QC checklist/task/gate builder
local_release_notes.py - Local LLM release notes and doc update suggestions
For local LLM flows, install extras with uv sync --extra flows.
Start uv run qmcp serve --host 0.0.0.0 when --use-mcp True to enable MCP calls
from Docker-based flows.
On Windows, prefer running flows in a Linux container to avoid platform-specific
Metaflow dependencies.
Docker runner (recommended on Windows):
docker compose -f docker-compose.flows.yml build
docker compose -f docker-compose.flows.yml run --rm flow-runner \
examples/flows/local_agent_chain.py run --use-mcp True --goal "..."Set MCP_URL and LLM_BASE_URL (or pass --mcp-url / --llm-base-url) when
running in Docker, e.g. http://host.docker.internal:3141.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA FastAPI-based implementation of the Model Context Protocol that enables standardized interaction between AI models and development environments, making it easier for developers to integrate and manage AI tasks.10MIT
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server implementation built with FastAPI that enables AI agent interactions. Provides a structured foundation for building AI-powered applications with proper data validation and modern Python tooling.
- AlicenseNot gradedqualityDmaintenanceModel Context Protocol server that standardizes tool discovery, execution, and context management for AI applications.MIT
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that connects multiple AI models into a single workflow, enabling multi-model orchestration, conversation continuity, and tools like code review, planning, and CLI-to-CLI bridging.
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/quaternionmedia/qmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server