robinsaige
Check the dependency rating of an MCP tool before your agent calls it.
Humans build agents; agents call tools they've never seen. This is a thin, dependency-free client for Robin Saige — a neutral observatory that probes ~10,000 MCP servers and publishes what they actually are: alive or dead, honest or drifting, a real server or one of 1,300 costumes on a single operator. Ask it before you depend on a stranger's tool.
pip install robinsaige
Read a rating
import robinsaige
r = robinsaige.check("io.github.cyanheads/usaspending-mcp-server")
rating = r["rating"]
print(rating["cluster"]) # e.g. "mid-solo"
print(rating["distinctiveness"]) # 0 = typical, 1 = highly unusual
print(rating["reach"], rating["use"], rating["trust"])
Every figure is a percentile or class within the ~10,813-server census — a dated observation,
not a warranty. What it does not claim is spelled out in rating["not_claimed"].
Find the right tool
Don't know the name? Search by what you need — ranked by rating, so trustworthy live servers come first.
res = robinsaige.find_tools("US tariff data")
for r in res["results"][:5]:
print(r["cluster"], r["server"], r["matched_tools"])
Gate a tool call
Put a TrustGate in front of tool dispatch. It never silently allows a tool it couldn't rate — the
default on a missing rating is warn, not allow.
from robinsaige import TrustGate, Blocked
gate = TrustGate() # sensible default policy
d = gate.assess("some.registry/name")
if d.ok:
call_the_tool() # allow or warn
else:
skip_it(d.reason) # blocked: dead-listing / unreachable / not-mcp / rate-limited
# or enforce — raises Blocked on a blocked cluster:
try:
gate.guard("some.registry/name")
except Blocked as b:
...
Report how a call went (the tap)
Reading a rating and contributing one are the same install. Wrap a tool call in gate.tap(...) — it
times the call and fire-and-forgets a report on exit. The observatory anchors every report to its own
probe (a "worked" report on a server it saw dead is discarded) and reports do not move the verdict
— they accumulate. Reporting failures are swallowed; the tap never breaks your agent.
with gate.tap("some/server", tool="lookup") as t:
result = call_the_tool()
t.ok = looks_good(result) # optional; defaults to "no exception raised"
Policy is yours to widen or narrow:
gate = TrustGate(
block={"dead-listing", "unreachable", "farm-costume"}, # refuse these
warn={"stale-thin-solo", "auth-walled"}, # warn on these
on_missing="block", # unrated = refused
)
Command line
robinsaige pulse # the whole ecosystem at a glance
robinsaige find tariff # discover a server by name fragment
robinsaige check io.github.you/mcp # full rating (JSON)
robinsaige gate io.github.you/mcp # ALLOW / WARN / BLOCK (exit 2 if blocked)
robinsaige lock a/one b/two # pin the verdicts you depend on -> robinsaige.lock
robinsaige verify # CI gate: exit 1 degraded, 2 blocked/missing
Gate your CI on it
Pin once, verify every build — the build fails when a tool your agent depends on dies, gets blocked, or degrades:
# .github/workflows/robinsaige.yml
name: robinsaige verify
on:
pull_request:
schedule: [{cron: "17 7 * * *"}] # daily: catch degradations between PRs
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip install robinsaige
- run: robinsaige verify # reads robinsaige.lock at the repo root
robinsaige verify --warn-ok tolerates allow→warn transitions; block/missing always fail.
The lockfile pins a dated observation, not a warranty — verify re-derives from the live
observatory every run.
What the clusters mean
dead-listing a registry entry pointing at a 404 · farm-costume many names, one operator ·
walled-opaque a login with no legible challenge · stale-thin old protocol, few tools ·
rich-fast-solo a large, quick, independent server. Browse them all at
robinsaige.com/spectrum.
Honesty
Robin Saige is a signal, not a gate — it publishes its method and raw data so you can recompute and disagree. This client is stdlib-only on purpose: a trust tool should add zero dependencies. It is a dated observation, never a guarantee; auth-walled internals are unverified from outside.
MIT licensed.
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 robinsaige-0.6.0.tar.gz.
File metadata
- Download URL: robinsaige-0.6.0.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5a5db36522d4728fde7bd9f9504937172d3eaf95fac26293e6e46cf6d53c0f2
|
|
| MD5 |
74f713e39fb581d3cce305547c5d6f82
|
|
| BLAKE2b-256 |
39a684f155aa0b4bb0925389980d96995d592cf97552820203196140edfc4a45
|
File details
Details for the file robinsaige-0.6.0-py3-none-any.whl.
File metadata
- Download URL: robinsaige-0.6.0-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ca9d8c20b51e13d6fff9ddc6f6ad055d1b4ce43a2e1c00d357cb9487ff053ad
|
|
| MD5 |
db799f7d6cdebfd0676ed45f0cd42a47
|
|
| BLAKE2b-256 |
e8531cb57455278ee72cb6250685c3c81d755a53e4e95701e9cf7c1edb069716
|