Armature MCP Analytics for Python
Understand which MCP tools agents use, what users are trying to accomplish, and where calls fail—without building an observability pipeline.
Armature · TypeScript SDK · Go SDK · Agent install
Install in 30 seconds
1. Install
For servers using the standalone FastMCP package:
pip install "armature-mcp-analytics[fastmcp]"
If FastMCP comes from the official MCP Python SDK:
pip install "armature-mcp-analytics[mcp]"
2. Add your regional ingest configuration
Create a server in the Armature dashboard for your account's region, then copy both generated environment variables into your server environment:
export ANALYTICS_INGEST_API_KEY="..."
export ANALYTICS_INGEST_URL="https://app.armature.tech/api/mcp-analytics/ingest" # US
For an EU account, ANALYTICS_INGEST_URL is required and must be:
export ANALYTICS_INGEST_URL="https://eu.armature.tech/api/mcp-analytics/ingest"
The URL may be omitted only for US accounts because the SDK defaults to the US endpoint. Keeping the generated URL explicit is recommended and makes the deployment region unambiguous.
Verify the installation locally
The language-independent doctor can inspect a running Python MCP server:
npx @armature-tech/mcp-analytics doctor --url http://localhost:3000/mcp
It performs an MCP handshake, verifies every served tool exposes Armature's
telemetry contract, and authenticates the configured ingest key with an empty
batch containing no sessions or customer content. Use --skip-ingest for an
offline-only check and --json for a machine-readable report. Marked keys are
checked against the ingest and MCP regions before any authenticated probe.
3. Instrument FastMCP
Call instrument_fastmcp before registering your tools:
from fastmcp import FastMCP
from armature_mcp_analytics import instrument_fastmcp
mcp = FastMCP("Customer MCP")
instrument_fastmcp(
mcp,
{"armature": {"delivery": "await"}},
)
@mcp.tool
def lookup_customer(customer_id: str) -> dict:
return {
"customer_id": customer_id,
"status": "active",
}
mcp.run()
That’s it. Make one tool call, open Armature, and the session is already there.
Built for MCP—not page views
| Understand demand | Find what breaks | Improve with context |
|---|---|---|
| See which tools and use cases people actually need. | Surface failures, retries, latency, and dead ends. | Connect every call to user intent and agent reasoning. |
No custom event schema. No logging pipeline. No changes to your tool handlers.
What you see in Armature
- Complete MCP sessions and client attribution
- The user intent behind each session
- Every tool called by the agent
- Input and output previews, latency, and outcome
- Failures, timeouts, and repeated retries
- Cross-server activity for the same actor
How it works
Armature instruments the boundary around every tool call:
- The SDK adds an optional telemetry block to the tool’s input schema.
- The agent can attach user intent, reasoning, and frustration to the call.
- The SDK removes telemetry before your handler receives the arguments.
- Timing, outcome, and truncated previews are sent to your dashboard.
{
"telemetry": {
"user_intent": "Check whether the customer's last payment succeeded",
"agent_thinking": "The payment lookup tool provides the requested status",
"user_frustration": "low"
}
}
All telemetry fields are optional. Send agent_thinking on every call; send user_intent and user_frustration only on the first call after each new user message. Their absence on later calls means the same turn continues. The earlier aliases remain accepted, while cached user_turn values are ignored.
Privacy: Armature is observability, not authentication. Keep your existing MCP authentication and authorization in place. Do not put secrets in tool arguments or telemetry fields.
Supported Python MCP servers
| Your server | Install | Integration |
|---|---|---|
| from fastmcp import FastMCP (2.x-4.x) | armature-mcp-analytics[fastmcp] | instrument_fastmcp(...) |
| from mcp.server.fastmcp import FastMCP (SDK 1.x) | armature-mcp-analytics[mcp] | instrument_fastmcp(...) |
| from mcp.server.mcpserver import MCPServer (SDK 2.x) | armature-mcp-analytics[mcp] | instrument_fastmcp(...) |
| Custom dispatcher | Base package | create_analytics_recorder(...) |
| Stateless HTTP / serverless (handshake era) | Base package | StatelessHttpSessionMiddleware(...) |
The FastMCP wrapper is idempotent. Calling it more than once on the same server does not double-instrument tools.
Official MCP Python SDK
SDK 1.x:
from mcp.server.fastmcp import FastMCP
from armature_mcp_analytics import instrument_fastmcp
mcp = FastMCP("Customer MCP")
instrument_fastmcp(mcp, {"armature": {"delivery": "await"}})
SDK 2.x (spec revision 2026-07-28, renamed server class):
from mcp.server.mcpserver import MCPServer
from armature_mcp_analytics import instrument_fastmcp
mcp = MCPServer("Customer MCP")
instrument_fastmcp(mcp, {"armature": {"delivery": "await"}})
The dual-era mcp.streamable_http_app() is fully supported: one endpoint
serves both handshake-era clients and modern stateless-era clients.
Session identity in the stateless era (MCP 2026-07-28)
The 2026-07-28 protocol revision has no initialize handshake and no
Mcp-Session-Id. The SDK resolves a session for each request in this order:
gen_ai.conversation.idfrom thebaggagerequest_metakey (W3C baggage format, URL-decoded);- the
x-armature-session-seedHTTP header; - a legacy
Mcp-Session-Idheader, when a handshake-era client sent one; - a process-scoped id, only when there is genuinely no HTTP request (stdio);
- otherwise none — ingest buckets the activity server-side.
Client name/version, the negotiated protocol version, and capabilities are
read per-request from the reserved io.modelcontextprotocol/* _meta keys
(clientInfo is optional; requests without it are attributed to an unknown
client). The raw _meta block is captured verbatim into each tool_call
event's metadata as request_meta, capped at 4 KB with a truncation marker.
If mcp>=2 is installed but a tool call reaches the recorder without any
per-request context (for example a hand-rolled server object), the SDK logs a
loud one-time warning that session attribution will degrade — it never
crashes the host server.
Client attribution in the handshake era (stateful servers)
Stateful servers handle the initialize handshake inside their transport,
so the wrapper never sees it. The SDK recovers the client identity at
tool-call time from the transport session, which retains the handshake as
session.client_params: client name/version, the negotiated protocol
version, and capabilities. The identity is emitted once per session on the
deduplicated session_init event and also stamped on each tool_call
event's metadata (client_name, client_version, protocol_version), so
dashboards attribute the session's client instead of showing "Unknown".
This works for standalone FastMCP (2.x/3.x, HTTP or stdio), the official
SDK's mcp.server.fastmcp (with or without stateless_http), and the SDK
v2 / fastmcp 4 injected-context surfaces. When no handshake was observed
(stateless era, in-process calls), behavior is unchanged.
Custom dispatcher
Use the recorder when you manage tools/list and tools/call yourself:
from armature_mcp_analytics import create_analytics_recorder
analytics = create_analytics_recorder(
{"armature": {"delivery": "await"}}
)
async def lookup_customer(args, context):
return {"customer_id": args["customer_id"]}
analytics.tool(
{
"name": "lookup_customer",
"description": "Look up a customer by ID.",
"inputSchema": {
"type": "object",
"properties": {
"customer_id": {"type": "string"},
},
"required": ["customer_id"],
},
},
lookup_customer,
)
# tools/list
tools = analytics.tool_definitions()
# tools/call
result = await analytics.dispatch(
"lookup_customer",
{
"customer_id": "cus_123",
"telemetry": {
"user_intent": "Find the customer",
},
},
{"sessionId": "session_123"},
)
Pass stable session, client, header, and authentication information in the dispatcher context when it is available. Do not pass the transport request id as requestId — the SDK mints a fresh per-call id, and reusing the per-connection JSON-RPC counter makes concurrent conversations collide on the event dedup key (ingest silently drops the duplicates). Set requestId only for a genuine per-invocation idempotency key; it is scoped by sessionId automatically.
Stateless HTTP and serverless (handshake era)
This scheme applies to handshake-era clients (protocol revisions before 2026-07-28) only. Modern stateless-era requests carry identity in
_metaand need no minted session id; the middleware detects them, logs a one-time notice, and passes them through untouched.
Initialization and tool calls can land on different instances. Wrap a
stateless FastMCP ASGI app so initialize issues an identity-bearing session
ID that later requests echo:
from armature_mcp_analytics import StatelessHttpSessionMiddleware
# Standalone FastMCP
app = StatelessHttpSessionMiddleware(
mcp.http_app(stateless_http=True, json_response=True)
)
# Official MCP Python SDK FastMCP
# mcp = FastMCP("Customer MCP", stateless_http=True, json_response=True)
# app = StatelessHttpSessionMiddleware(mcp.streamable_http_app())
The middleware is dependency-free ASGI. It mints
mcp_<client>_v_<version>_<uuid> on a successful initialize response and
preserves the echoed Mcp-Session-Id on later cold invocations. The recorder
then recovers the client identity without a session store. Continue to use
delivery: "await" in request-scoped deployments.
A client that never echoes the header still gets served; its calls simply keep a null session hint, and ingest groups them by actor + client. The middleware does not invent an id for those requests: a fresh id per POST is trusted verbatim by ingest, which would record one single-event session per tool call.
Custom transports can use the lower-level API directly:
from armature_mcp_analytics import resolve_stateless_http_session
session = resolve_stateless_http_session(body=request_body, headers=request_headers)
generator = session.session_id_generator # initialize only
context = session.dispatch_context # recorder/dispatcher context
Session IDs provide observability attribution, not authentication.
Let your coding agent install it
Point Claude Code, Cursor, or Codex at SKILL.md, then ask:
Install Armature MCP Analytics using the repository’s SKILL.md. Detect the FastMCP import path, instrument the server, and verify that a tool-call event is emitted.
The playbook covers both FastMCP import paths and custom dispatchers.
Configuration
Every server needs ANALYTICS_INGEST_API_KEY. EU servers must also set ANALYTICS_INGEST_URL; US servers may rely on the US default. Operational controls are available when you need them:
instrumentation = instrument_fastmcp(
mcp,
{
"armature": {
"endpoint_url": "https://app.armature.tech/api/mcp-analytics/ingest",
"api_key": "...",
"actor_identifier": lambda input: "anything-at-all@example.com",
"enabled": True,
"delivery": "await",
"redact_secrets": True,
"redact_event": None,
"schedule": None,
"timeout_ms": 5000,
"emit": None,
"on_error": None,
"request_capability": True,
}
},
)
| Option | Default | Purpose |
|---|---|---|
| endpoint_url | US Armature cloud | Override the ingestion endpoint; use https://eu.armature.tech/api/mcp-analytics/ingest for EU |
| api_key | ANALYTICS_INGEST_API_KEY | Authenticate events and identify the MCP server |
| actor_id | Derived from request auth | Supply a stable user or tenant seed |
| actor_identifier | None | Store a caller-provided identifier verbatim |
| enabled | True | Enable or disable instrumentation |
| delivery | "background" | Use "await" for serverless or short-lived processes |
| timeout_ms | 5000 | Set the timeout for each delivery attempt |
| emit | Network emitter | Replace delivery for tests or custom pipelines |
| on_error | None | Observe delivery failures |
| capture_telemetry | True | Disable conversation-derived telemetry entirely (see below) |
| redact_secrets | True | Disable only built-in high-confidence secret matching |
| redact | None | Redact sensitive data from previews before delivery (see below) |
| redact_event | None | Sync/async whole-event hook that may mutate or drop a tool call |
| schedule | None | Register background work with a serverless lifecycle primitive |
| telemetry_field_map | None | Export existing argument fields as telemetry (see below) |
| request_capability | True | Inject request_capability so agents can report an unmet tool need; set False to disable |
Network failures, timeouts, 429, and 5xx responses are retried once after
100 ms (two attempts total). Other 4xx responses are not retried.
IngestDeliveryError provides payload-free code, status, retryable, and
attempts fields to on_error; telemetry remains fail-open by default.
Capability requests
A request_capability tool is added dynamically by default. It accepts one
required capability string and uses this description exactly:
Request a capability that is not provided by the currently available tools. Use this when a capability is required to complete the user’s request and no existing tool can perform it.
Calls are captured by the normal analytics pipeline and feed Armature's unmet-demand signals. Set request_capability: False to disable it. The tool is also suppressed when enabled: False or when no API key/custom emit delivery is configured. When you explicitly set request_capability: True, a customer tool of the same name is rejected as reserved; when it is on merely by default, the customer tool takes precedence and the SDK skips its own injection. The camelCase alias requestCapability is also accepted.
Telemetry capture and privacy
The SDK injects an optional telemetry parameter (user_intent, agent_thinking, user_frustration) into each wrapped tool. This is conversation-derived data: if your deployment cannot disclose it — for example in a privacy policy required for an app-store submission — set capture_telemetry: False. With capture off, tool schemas, signatures, and descriptions pass through completely untouched, and telemetry sent by clients holding an older cached schema is stripped and never delivered anywhere (ingest, emit, or on_error). Tool-call and session analytics keep working without the conversational fields.
Disclosure summary for privacy policies: with capture on, the SDK collects tool names, tool call inputs/outputs (size-capped previews), error messages, timing, a one-way hash of the actor seed, the verbatim actor_identifier when configured, client name/version, and the agent-supplied telemetry fields above; recipients are your Armature workspace. With capture off, the telemetry fields are not collected.
If a tool function already declares its own telemetry parameter (or an explicit schema declares the property), the SDK treats that field as yours: signature, schema, and arguments pass through untouched, nothing is interpreted as Armature telemetry, and a warning is logged once at registration. To export an existing, semantically equivalent field, opt in explicitly with telemetry_field_map — e.g. {"user_intent": "purpose"} reads (never strips) the tool's purpose argument into user_intent. Explicit telemetry values always win over mapped ones, and the map is ignored while capture is off.
Redaction and binary payloads
Before serialization, the SDK bounds sanitizer work to 65,536 characters, removes binary/base64 payloads, and applies default-on high-confidence secret rules to inputs, outputs, errors, and telemetry text. Set redact_secrets: False only to disable secret matching; binary sanitization remains active.
The legacy synchronous redact callable runs next. Prefer sync-or-async redact_event for new integrations: it receives the whole prepared tool-call candidate and may mutate it or return None to drop the tool event. The order is bounded sanitization → built-in secret rules → redact → redact_event → stringify → truncate. Exceptions fail closed with "[redaction failed]" placeholders.
CamelCase aliases such as endpointUrl, apiKey, actorId, actorIdentifier, timeoutMs, and onError are accepted for JavaScript parity.
Delivery
- "background" queues privacy work on the event loop. Use it for long-lived processes and call await instrumentation.recorder.flush() during shutdown.
- "await" drains sanitization, hooks, and delivery before returning. Use it for serverless functions and short-lived processes.
The FIFO queue batches up to 20 candidates, holds at most 1,000, and drops the oldest candidate on overflow. A platform lifecycle callable may be passed as schedule (for example, context.wait_until).
If the API key is missing, delivery quietly no-ops for local development.
Actor identification
By default, the SDK derives an actor seed from MCP authentication information or the Authorization header. You can provide a string or function through actor_id:
def actor_id(context):
return context.get("authInfo", {}).get("principalId", "anonymous")
instrument_fastmcp(
mcp,
{"armature": {"actor_id": actor_id}},
)
The seed is hashed before transmission. Armature scopes the resulting actor identifier to your server.
Optional actor_identifier may be a string or sync/async resolver using the
same input as actor_id. Its contents are not interpreted: it may be an
internal ID, email, name, or any other non-empty string. The value is sent
verbatim in an actor_identity event and hashed into actor_id. An event is
emitted only when the value changes. The only additional limit is an 8 KiB cap.
When actor_identifier is absent, actor_id retains its existing hashed-
only behavior.
Verify your integration
A successful import is not enough. Verify that the schema is decorated and that a tool_call event is emitted.
Replace network delivery with a local capture:
import asyncio
from fastmcp import FastMCP
from armature_mcp_analytics import instrument_fastmcp
batches = []
mcp = FastMCP("Analytics smoke test")
instrumentation = instrument_fastmcp(
mcp,
{
"armature": {
"delivery": "await",
"actor_id": "smoke-test",
"emit": batches.append,
}
},
)
@mcp.tool
def ping(message: str) -> dict:
return {"message": message}
async def main():
await mcp.call_tool(
"ping",
{
"message": "hello",
"telemetry": {
"user_intent": "Verify analytics",
},
},
)
await instrumentation.recorder.flush()
event = next(
event
for batch in batches
for event in batch["events"]
if event["kind"] == "tool_call"
)
assert event["metadata"]["user_intent"] == "Verify analytics"
asyncio.run(main())
Compatibility
- Python 3.10+
- FastMCP 2.x, 3.x, and 4.x (4.x pre-releases supported from 4.0.0a2)
- Official MCP Python SDK 1.27+ and 2.x (
MCPServer, spec 2026-07-28) - Synchronous and asynchronous tool handlers
Note: fastmcp 4.0.0a2 hard-pins mcp==2.0.0b2, so it cannot be co-installed
with newer mcp 2.x builds (such as 2.0.0rc1) until fastmcp relaxes that pin.
The extras here are ranges (mcp>=1.27,<3, fastmcp>=2,<5) and resolve
cleanly with either combination.
Environment variables
| Variable | Purpose |
|---|---|
| ANALYTICS_INGEST_API_KEY | Armature ingest key |
| ANALYTICS_INGEST_URL | Optional only for US, which defaults to https://app.armature.tech/api/mcp-analytics/ingest. Required for EU and must be https://eu.armature.tech/api/mcp-analytics/ingest. Preserve this variable when copying dashboard configuration. |
Example
Run the complete stdio server in examples/minimal:
cd examples/minimal
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
ANALYTICS_INGEST_API_KEY="..." \
ANALYTICS_INGEST_URL="https://app.armature.tech/api/mcp-analytics/ingest" \
python server.py
Support
Open an issue · Email us · Releases
License
Licensed under the Apache License 2.0.
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 armature_mcp_analytics-0.1.31.tar.gz.
File metadata
- Download URL: armature_mcp_analytics-0.1.31.tar.gz
- Upload date:
- Size: 71.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78f6229a190f2d12c4cd37f047924f80ee4c254555dfc55d9708398e9f992505
|
|
| MD5 |
7c0fdc919b41fdd73603125a933c6bda
|
|
| BLAKE2b-256 |
3d463ce900ec6d43e1764f0d8160826b9e8299f2a8c9880682369b0a64697fc7
|
Provenance
The following attestation bundles were made for armature_mcp_analytics-0.1.31.tar.gz:
Publisher:
publish.yml on armature-tech/mcp-analytics-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
armature_mcp_analytics-0.1.31.tar.gz -
Subject digest:
78f6229a190f2d12c4cd37f047924f80ee4c254555dfc55d9708398e9f992505 - Sigstore transparency entry: 2463792769
- Sigstore integration time:
-
Permalink:
armature-tech/mcp-analytics-python@12ffdabbc11832855d9492a207dcca33ca1c0a7d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/armature-tech
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@12ffdabbc11832855d9492a207dcca33ca1c0a7d -
Trigger Event:
push
-
Statement type:
File details
Details for the file armature_mcp_analytics-0.1.31-py3-none-any.whl.
File metadata
- Download URL: armature_mcp_analytics-0.1.31-py3-none-any.whl
- Upload date:
- Size: 64.5 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 |
1b12f881456db347c7ec92da23a0f25a7689ff259bb090394acf2de4c93c1a70
|
|
| MD5 |
a5845f9d7a6755bfe60df2153b6a3983
|
|
| BLAKE2b-256 |
bded14f3a49d6af983aea0bf719c81be71d0ce4de505253c701428795acc1c58
|
Provenance
The following attestation bundles were made for armature_mcp_analytics-0.1.31-py3-none-any.whl:
Publisher:
publish.yml on armature-tech/mcp-analytics-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
armature_mcp_analytics-0.1.31-py3-none-any.whl -
Subject digest:
1b12f881456db347c7ec92da23a0f25a7689ff259bb090394acf2de4c93c1a70 - Sigstore transparency entry: 2463792956
- Sigstore integration time:
-
Permalink:
armature-tech/mcp-analytics-python@12ffdabbc11832855d9492a207dcca33ca1c0a7d -
Branch / Tag:
refs/heads/main - Owner: https://github.com/armature-tech
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@12ffdabbc11832855d9492a207dcca33ca1c0a7d -
Trigger Event:
push
-
Statement type: