mcp-harness
Enterprise governance middleware for MCP servers. Cost attribution, auth, observability, quotas, audit, and policy — composable around the official MCP Python SDK.
Why this exists
Most public MCP servers are toy examples. The gap between "works on my laptop" and "I can ship this to 500 engineers under SOC 2, GDPR, and a Finance team that wants per-business-unit cost allocation" is enormous — and almost none of that gap is in the protocol. It's in the boring middleware around it.
mcp-harness is that middleware. It doesn't fork the protocol, doesn't reinvent the SDK, and
doesn't try to be an agent framework. It's a set of composable decorators and middleware that wrap
the official SDK so the resulting server can be safely run inside a company.
The headline use case: your CFO asks who's spending the AI budget, and you can answer by end of week one.
Install
pip install mcp-harness # core pipeline (no MCP SDK required)
pip install 'mcp-harness[server]' # + the official MCP SDK, to actually serve tools
pip install 'mcp-harness[all]' # + OpenTelemetry, Prometheus, tiktoken, JWT
The core middleware pipeline has no hard dependency on mcp, so you can unit-test all your
governance behaviour without a transport. Install the server extra to run a live server.
Hello, governed world
The same MCP server you'd write anyway, with the governance layer declared once at the top:
from mcp_harness import Harness
from mcp_harness.auth import APIKeyAuth
from mcp_harness.governance import CostTracking, Quotas, AuditLog
from mcp_harness.observability import OTELTracing, StructuredLogging
from mcp_harness.policy import AllowList
harness = Harness(
name="customer-data-mcp",
auth=APIKeyAuth(keys={"sk-finance": {"id": "svc-reports", "team": "finance"}}),
middleware=[
OTELTracing(service_name="customer-data-mcp"),
StructuredLogging(),
AllowList.from_yaml("policies/tool-access.yaml"),
Quotas(per_principal_per_minute=60),
CostTracking(
cost_center_resolver=lambda p: p.team,
sink="jsonl://costs.jsonl",
),
AuditLog(sink="jsonl://audit.jsonl"),
],
)
@harness.tool()
async def search_customer(customer_id: str) -> dict:
"""Find a customer record by ID."""
return {"id": customer_id, "name": "ACME Corp"}
if __name__ == "__main__":
harness.run() # stdio by default; transport="streamable-http" for HTTP
Already have a server? Wrap it in one line
Keep every @server.tool() exactly as it is — from_fastmcp adopts an existing FastMCP
instance and routes its tools through the pipeline, preserving their schemas:
from mcp.server.fastmcp import FastMCP
from mcp_harness import Harness
from mcp_harness.governance import CostTracking, Quotas
server = FastMCP("my-mcp")
@server.tool()
async def search(q: str) -> dict:
return {"hits": []}
harness = Harness.from_fastmcp(server, middleware=[CostTracking(), Quotas(per_principal_per_minute=60)])
harness.run()
Or scaffold it from the CLI, without touching your file:
mcp-harness wrap server.py # writes governed_server.py next to it
mcp-harness init my-mcp # scaffold a fresh governed server
Then attribute spend:
$ mcp-harness daily-rollup costs.jsonl
cost_center calls in_tok out_tok cost_usd
----------------------------------------------------------
finance 42 5210 9830 0.1284
platform 18 1940 3110 0.0451
----------------------------------------------------------
TOTAL 60 7150 12940 0.1735
How it works
A tiny onion middleware pipeline, decoupled from the SDK. @harness.tool() registers your
function; calls flow through each layer and into your tool. The same path runs whether the call
arrives from a live MCP client or from the in-process test client.
client ─▶ FastMCP ─▶ wrapper ─┐
├─▶ auth ─▶ policy ─▶ quotas ─▶ tracing ─▶ cost ─▶ audit ─▶ your tool
test/direct ─▶ dispatch ──────┘
Each layer is independently useful, independently testable, and opt-in. Adopt just CostTracking,
or stack the whole thing.
Modules
| Module | What you get |
|---|---|
mcp_harness.auth |
APIKeyAuth (with rotation), AnonymousAuth, ChainedAuth, experimental AzureADAuth (Entra ID JWT) |
mcp_harness.governance |
CostTracking (tokens → $ → cost center), Quotas (rate / team cap / concurrency, in-memory or distributed via RedisQuotaStore), AuditLog (async, shape-only, any sink incl. HTTPSink) |
mcp_harness.observability |
StructuredLogging (JSON + correlation ids), OTELTracing, Metrics (Prometheus or in-memory) |
mcp_harness.policy |
AllowList / DenyList (YAML, argument constraints), SchemaGuard (JSON Schema argument validation), PIIRedactor |
mcp_harness.resilience |
CircuitBreaker, Retry decorators for individual tools |
mcp_harness.testing |
HarnessTestClient, MockPrincipal, pytest fixtures |
mcp-harness CLI |
daily-rollup spend reports (table or --json), wrap an existing server, init a new one, doctor to check the install |
Optional integrations degrade gracefully: OTELTracing is a no-op (warned once) without the
otel extra; Metrics falls back to an in-memory backend without prometheus-client; cost token
counting uses a heuristic without tiktoken; RedisQuotaStore and SchemaGuard raise a clear
HarnessError pointing at the right extra ([redis] / [schema]) if used without it installed.
Run mcp-harness doctor to see which of those are active in your environment:
$ mcp-harness doctor
mcp-harness 0.2.0
python 3.12.0 (/usr/local/bin/python)
[x] server mcp 1.28.1
[ ] otel -- OTELTracing span export
[x] metrics prometheus-client 0.21.1
[ ] tokens -- exact token counting (else a chars/4 heuristic)
Shutting down cleanly
AuditLog writes through a background queue, and sinks may hold files or sockets. Closing the
harness drains every layer that needs it, so nothing buffered is lost on exit:
async with Harness(name="my-mcp", middleware=[AuditLog(sink="jsonl://audit.jsonl")]) as harness:
... # serve, or drive it from tests
# or explicitly, e.g. in a `finally:` around harness.run()
await harness.aclose()
Governance never fails a call it didn't mean to reject: a sink that can't write warns and drops
the record instead of turning a successful tool call into an error, and HTTPSink retries
connection failures, timeouts, 429s, and 5xxs before giving up.
Testing your server
Governance is covered by ordinary unit tests — no transport, no mocks of the SDK:
from mcp_harness.testing import HarnessTestClient, MockPrincipal
from myserver import harness
async def test_finance_can_search(harness_client): # fixture auto-registered
client = harness_client(harness, principal=MockPrincipal("svc-a", team="finance"))
assert await client.call("search_customer", {"customer_id": "c-1"})
Examples
examples/quickstart_server.py— smallest governed server.examples/local_governed_server.py— full stack, zero cloud deps. Runpython examples/local_governed_server.py --demoto watch the governance layers reject calls in real time.examples/azure_governed_server.py— the design's Azure-centric reference server.examples/redis_quota_server.py— quotas shared across multiple server processes/workers viaRedisQuotaStore. Runpython examples/redis_quota_server.py --demoto see the limit hold across two simulated workers (usesfakeredis, no real Redis needed for the demo).examples/schema_guarded_webhook_server.py—SchemaGuardvalidating tool arguments against a JSON Schema, with audit records delivered to a webhook viaHTTPSink. Runpython examples/schema_guarded_webhook_server.py --demoto see a valid call flow through to a real local HTTP collector while invalid ones are rejected before the tool ever runs.
Troubleshooting
HarnessError: ... requires ... Install it with: pip install 'mcp-harness[extra]' — an
optional integration (RedisQuotaStore, SchemaGuard, AzureADAuth, harness.run() itself)
needs its extra installed. The error names the exact extra; install it and re-run.
An optional integration seems inactive (no spans, approximate token counts, no Prometheus
metrics) — run mcp-harness doctor. It lists every extra with an [x]/[ ] marker and prints
the interpreter it's running under, which is usually the answer when the extra is installed but
into a different environment.
mcp-harness command not found right after pip install mcp-harness — pip warns about this
at install time (The script mcp-harness.exe is installed in ... which is not on PATH) but it's
easy to miss in a long install log. Either add that Scripts directory to your PATH, or run the
CLI as a module instead: python -m mcp_harness.cli daily-rollup ....
Corrupted / unparseable stdio traffic when using StdoutSink — if your server uses the
stdio MCP transport (the default), sys.stdout is the protocol channel. Route sinks to
sys.stderr (StdoutSink(stream=sys.stderr)), a file (JSONLSink), or a webhook (HTTPSink)
instead of the default stdout sink.
A tool call fails with PolicyDenied / QuotaExceeded / AuthenticationError instead of your
tool's own exceptions — that's expected: governance middleware rejects a call before your
tool runs by raising one of these (all subclasses of HarnessError). Under the mcp SDK these
propagate to the client as a normal tool error; in tests, assert on them directly with
pytest.raises(...).
Scope
In scope: auth, observability, cost attribution, quotas, audit, policy, resilience, testing.
Out of scope (by design): agent orchestration, a UI/dashboard, a tool registry, and anything that breaks MCP wire-compatibility. A library that does a few things well beats one that does fifteen poorly.
Compatibility & status
- Python 3.10+. Wraps the official
mcpSDK (FastMCP) without modifying the wire protocol. - Beta (v0.1). The
Harness, auth,CostTracking,Quotas(including the Redis-backedRedisQuotaStorefor multi-process deployments), observability,AllowList, andAuditLogAPIs are real and tested. Cloud sinks (Azure Monitor, Event Hubs, Kinesis, Kafka),SchemaGuard, andAzureADAuthhardening are still extension points — base interfaces ship, full wiring is on the roadmap. See CHANGELOG.md.
License
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 mcp_harness-0.2.0.tar.gz.
File metadata
- Download URL: mcp_harness-0.2.0.tar.gz
- Upload date:
- Size: 71.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bf61336cab55b19c1b1e612f45c603ed1d0308a7468dbc459928b0f63568ad1
|
|
| MD5 |
12d14e50592a7196065d1e40a333ccd4
|
|
| BLAKE2b-256 |
e20c7e3bffd56c76294ab5d9892573c1176d829e53838081bc2ead1b5f3b70f3
|
Provenance
The following attestation bundles were made for mcp_harness-0.2.0.tar.gz:
Publisher:
release.yml on nagenshukla/mcp-harness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_harness-0.2.0.tar.gz -
Subject digest:
7bf61336cab55b19c1b1e612f45c603ed1d0308a7468dbc459928b0f63568ad1 - Sigstore transparency entry: 2347928050
- Sigstore integration time:
-
Permalink:
nagenshukla/mcp-harness@3f93a30fa4f000083ba3fd32a6b6817413274ffd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/nagenshukla
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3f93a30fa4f000083ba3fd32a6b6817413274ffd -
Trigger Event:
push
-
Statement type:
File details
Details for the file mcp_harness-0.2.0-py3-none-any.whl.
File metadata
- Download URL: mcp_harness-0.2.0-py3-none-any.whl
- Upload date:
- Size: 62.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1950efca09db9181135a3f4b2c4a451a69ce7837db4e1c2640c32c766e7ea611
|
|
| MD5 |
a4ba792f3da3c876fef5963dbce63062
|
|
| BLAKE2b-256 |
b6be7ca639552b9a9aed9f73d1aabeec9122e10333d28e25c46b4ca1b5a190ca
|
Provenance
The following attestation bundles were made for mcp_harness-0.2.0-py3-none-any.whl:
Publisher:
release.yml on nagenshukla/mcp-harness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_harness-0.2.0-py3-none-any.whl -
Subject digest:
1950efca09db9181135a3f4b2c4a451a69ce7837db4e1c2640c32c766e7ea611 - Sigstore transparency entry: 2347928156
- Sigstore integration time:
-
Permalink:
nagenshukla/mcp-harness@3f93a30fa4f000083ba3fd32a6b6817413274ffd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/nagenshukla
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3f93a30fa4f000083ba3fd32a6b6817413274ffd -
Trigger Event:
push
-
Statement type: