Cross-ecosystem agent behavioral telemetry SDK — report and read trust scores from the Dominion Observatory. The only MCP scoring network that accepts agent-reported runtime data.
Project description
dominion-observatory-sdk (Python)
One-line agent behavioral telemetry for MCP servers, LangChain tools, AutoGen agents, and CrewAI workers. Feeds the Dominion Observatory, the only MCP scoring network that accepts agent-reported runtime data instead of static GitHub/registry signals.
Install
pip (recommended):
pip install dominion-observatory-sdk
Live on PyPI: https://pypi.org/project/dominion-observatory-sdk/
CDN alternative (single file, stdlib only, Python 3.9+):
curl -O https://sdk-cdn.sgdata.workers.dev/v1/observatory.py
Then drop observatory.py into your project and import from it directly.
Every CDN fetch fires anonymized adoption telemetry back into the Observatory.
Gateway Proxy (recommended)
Route any MCP server through Observatory for automatic trust verification:
from dominion_observatory import gateway_url
# Instead of connecting directly:
# url = "https://some-mcp-server.com/mcp"
# Route through Observatory:
url = gateway_url("https://some-mcp-server.com/mcp")
# Returns: "https://dominionobservatory.com/gateway/https%3A%2F%2Fsome-mcp-server.com%2Fmcp"
# Use this URL anywhere you'd use the original MCP server URL.
# Free trial: 50 calls/day per IP, no API key needed.
Works with Claude Desktop, LangChain, CrewAI, OpenAI Agents SDK, or any MCP client.
Usage
from dominion_observatory import report, check_trust, instrument, gateway_url
SERVER_URL = "https://my-mcp-server.example.com/mcp"
# 1. Route through gateway for trust-verified calls
trusted_url = gateway_url(SERVER_URL)
# 2. Fire-and-forget telemetry in a tool handler
report(
server_url=SERVER_URL,
success=True,
latency_ms=142,
tool_name="get_holidays",
)
# 3. Convenience wrapper: measures latency automatically
result = instrument(SERVER_URL, "get_holidays", lambda: do_work())
# 4. Read a trust score before delegating to another server
score = check_trust("https://some-other-mcp.example.com/mcp")
if score.found and (score.trust_score or 0) >= 70:
call_that_server()
What gets sent
Exactly these five fields, and nothing else:
| Field | Example |
|---|---|
server_url |
https://my-mcp-server.example.com/mcp |
success |
true |
latency_ms |
142 |
tool_name |
get_holidays |
http_status |
200 |
Not sent: query arguments, tool output, user IDs, IP addresses, auth tokens, or any other payload. This satisfies Singapore PDPA and IMDA's agentic AI transparency requirements, and is compatible with EU AI Act Article 12 logging.
Why this exists
5+ MCP scoring platforms already exist (Glama, Smithery, MCP Scorecard, Nerq, Zarq), but all of them score servers from the outside using GitHub and registry metadata. None of them observe what happens when an agent actually calls a tool. The Dominion Observatory is the only network that collects agent-reported, cross-ecosystem runtime behavior — the only data that ages into compounding value because it can't be backfilled.
Every install of this SDK is a permanent telemetry pipeline.
LangChain integration (v0.2.0)
Drop-in BaseCallbackHandler that reads Observatory trust scores before every
tool call and reports anonymized telemetry after. Complements
ComplianceCallbackHandler-style audit trails (LangChain #35691) and AIP-style
signed-intent kill switches (LangChain #36232) — those prove who acted;
Observatory answers is the tool misbehaving right now?
from langchain.agents import AgentExecutor
from dominion_observatory.langchain import ObservatoryTrustCallbackHandler
handler = ObservatoryTrustCallbackHandler(
tool_server_urls={
"web_search": "https://search.example.com/mcp",
"transfer_funds":"https://payments.example.com/mcp",
},
min_trust_score=40.0,
block_on_low_trust=True,
)
agent = AgentExecutor(..., callbacks=[handler])
Requires langchain-core>=0.3. Install separately; the base SDK has zero
runtime dependencies.
Observatory API
| Purpose | Endpoint |
|---|---|
| Report interaction | POST https://dominionobservatory.com/mcp (MCP JSON-RPC) |
| Trust score | GET https://dominionobservatory.com/api/trust?url=... |
| Global stats | GET https://dominionobservatory.com/api/stats |
License
MIT
Project details
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 dominion_observatory_sdk-0.5.0.tar.gz.
File metadata
- Download URL: dominion_observatory_sdk-0.5.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd0707826ddfc107d82b37fb941d8f2cb7b7eb1772496dffe49366f8dba4ba57
|
|
| MD5 |
b986a41ffd45a4c8a482c3a05ed8b8e4
|
|
| BLAKE2b-256 |
3181c7a321b261782d890482b0192e8671dc21ae9ce13cd5fc4cfb0bd344de41
|
File details
Details for the file dominion_observatory_sdk-0.5.0-py3-none-any.whl.
File metadata
- Download URL: dominion_observatory_sdk-0.5.0-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d57af7e0cb6cb1eb733d47e2e03f6df85b1a42c29e3828e0a1a5528391d8f07a
|
|
| MD5 |
2807cf6775ec981fb153d85ed331c637
|
|
| BLAKE2b-256 |
98a5d04001970514aac44323def277e6d189453924afc0c7171febe00154f66c
|