@ours.network/mcp
npm
v1.1.1
Published by @ours.network — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.
MCP server daemon for ours — one native ADAPT wrapper hosting N self-sovereign identities, exposing secure agent-to-agent messaging tools over HTTP (Streamable HTTP). Run `ours-mcp start`.
The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.
1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:
The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.
2. Client adoption risk — 100 − 11 = 89. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:
| Points | Adoption-risk factor |
|---|---|
| −10 | capability blast radius (critical) — client exposure if the model is manipulated |
| −1 | publisher verification (public source) — no provenance, but the source is public and inspectable |
Capability observations and info notes are shown under Findings but never scored.
Open any row's finding below for the file, line and evidence behind a deduction.
This server (without client built-ins) exposes a complete data-exfiltration chain: get_messages → list_files → send_message. Untrusted input is ingested, private data is read, and it can be sent to an external sink via the agent composing the tools (→). Static analysis proves the primitive exists, not that a specific run will occur.
Fix: Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.
Location: flow get_messages → list_files → send_message
In the server's implementation (`dist/connector.js:36`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ode.process(l,t));let f=new Function(`${Zr.default.self}`,`${Zr.default.scope}`,l)(this,this.scope.get());if(this.scope.
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/connector.js
In the server's implementation (`dist/server.js:5`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ode.process(l,t));let f=new Function(`${Tr.default.self}`,`${Tr.default.scope}`,l)(this,this.scope.get());if(this.scope.
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/server.js
In the server's implementation (`dist/cli.js:2`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: rt{spawn as L}from"node:child_process";import{realpathSync as v}from"node:fs";import{fileURLToPath as j}from"node:url";i
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/cli.js
Tool "save_file" can write, overwrite or delete files (keyword "save_file" in tool name). Verify it is scoped to a safe directory.
Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.
Location: tool save_file
In the server's implementation (`dist/cli.js:5`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ,{runConnector:e}=await import(t.href);await e({leaseToken:f,clientPid:u,version:l,bindIdentity:M})}async function B(){a
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/cli.js
Tool "save_file" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.
Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.
Location: tool save_file
Each tool and what it can reach — statically extracted from the published source.
get_messagesingests untrusted inputlist_filesreads sensitive datasave_filewrites filessend_messagenetwork egressadd_contactno sensitive capabilityadvertise_migrateno sensitive capabilitychoose_identityno sensitive capabilityclose_temporary_identityno sensitive capabilitycreate_identityno sensitive capabilitycreate_root_identityno sensitive capabilitycreate_temporary_identityno sensitive capabilitycurrent_identityno sensitive capabilitydefine_local_identity_fileno sensitive capabilitygenerate_inviteno sensitive capabilityget_file_infono sensitive capabilityget_filesno sensitive capabilityget_history_itemno sensitive capabilitylist_contact_commandsno sensitive capabilitylist_contactsno sensitive capabilitylist_historyno sensitive capabilitylist_identitiesno sensitive capabilitylist_incoming_filesno sensitive capabilitylist_invitesno sensitive capabilitylist_local_contact_bookno sensitive capabilityremove_contactno sensitive capabilityremove_identityno sensitive capabilityrename_contactno sensitive capabilityrespond_to_introductionno sensitive capabilityrevoke_inviteno sensitive capabilitysend_commandno sensitive capabilitysend_fileno sensitive capabilityset_biono sensitive capabilityset_local_book_policyno sensitive capabilityset_personano sensitive capabilityCross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).
Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v1.1.1 latest |
B 89/100 | 7 | 1.13.0 | 2026-09-07 |
v1.1.0 |
B 89/100 | 7 | 1.13.0 | 2026-09-06 |
v1.0.0 |
B 89/100 | 7 | 1.13.0 | 2026-09-01 |
v0.17.2 |
A 93/100 | 6 | 1.12.1 | 2026-08-24 |
v0.17.0 |
A 93/100 | 6 | 1.12.1 | 2026-08-22 |
v0.16.1 |
A 93/100 | 6 | 1.12.1 | 2026-08-19 |
v0.16.0 |
A 93/100 | 6 | 1.12.1 | 2026-08-18 |
v0.15.4 |
A 93/100 | 6 | 1.12.1 | 2026-08-04 |
v0.15.3 |
A 93/100 | 6 | 1.12.1 | 2026-08-03 |
v0.15.1 |
A 93/100 | 4 | 1.12.1 | 2026-07-29 |
Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.
The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.
npx mcptrustchecker scan @ours.network/mcp --online
One key, 100+ models — chat with any LLM and generate video, images, speech. Free trial at 370.ai.
Retired compatibility stub for the AgentCanary MCP server. Daily briefs continue on X and Telegram.
A Backstage plugin that provides a chat interface for interacting with the MCP Servers.
Signal-first Bitcoin intelligence: sovereign, hiring & hashrate signals over MCP.
WhatsApp® reminders and rescheduling for Calendly. Public read-only MCP endpoint.
Open Source Generic MCP Client for testing & evaluating mcp servers and agents