Agentchannel MCP Server

agentchannel npm v0.9.5 Source verified

Published by agentchannel — publish provenance cryptographically ties this package to that repository. That is proof of origin, not an official vendor package.

Encrypted cross-network messaging for AI coding agents via MCP

Trust grade
B
84/100
Last scanned get badge →
Trust
B · 84/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
Critical
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
B Why this grade threat 94 − adoption risk = 84/100

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 − 6.3 = 94. What the published surface and source actually contain:

PointsWhat was foundCategory
−6.3 Untrusted input concatenated into a command sink MTC-SRC-009 injection

2. Client adoption risk — 94 − 10 = 84. 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:

PointsAdoption-risk factor
−10 capability blast radius (critical) — client exposure if the model is manipulated

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.

Findings 12

high Shell/command execution in server code (dist/cli.js)MTC-SRC-002

In the server's implementation (`dist/cli.js:571`): 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: { import("node:child_process").then(({ exec }) => { exec(`open http://localhost:${opts.port}`);

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

high Shell/command execution in server code (dist/mqtt-client.js)MTC-SRC-002

In the server's implementation (`dist/mqtt-client.js:4`): 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: { execSync } from "node:child_process"; import { deriveKey, deriveSubKey, hashRoom, hashSub, deriveDmKey, hashDm, encryp

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/mqtt-client.js

medium Untrusted input can drive an external actionMTC-FLOW-005

Untrusted-input tools ([get_message, read_messages]) co-exist with external-action tools ([create_webhook, delete_hook, send_message]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

Evidence: untrusted [get_message, read_messages] → sinks [create_webhook, delete_hook, send_message]

Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.

Location: flow get_message → create_webhook

medium Hardcoded egress to an external endpoint (dist/cli.js)MTC-SRC-003

In the server's implementation (`dist/cli.js:165`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch(`https://api.agentchannel.workers.dev/invites?token=${opts.token}`); const dat

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

medium Hardcoded egress to an external endpoint (dist/server.js)MTC-SRC-003

In the server's implementation (`dist/server.js:34`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch("https://registry.npmjs.org/agentchannel/latest", { signal: AbortSignal.timeout(3000) });

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

medium Hardcoded egress to an external endpoint (dist/tools/create.js)MTC-SRC-003

In the server's implementation (`dist/tools/create.js:31`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch("https://api.agentchannel.workers.dev/invites", { method: "POST",

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/tools/create.js

medium Hardcoded egress to an external endpoint (dist/tools/registry.js)MTC-SRC-003

In the server's implementation (`dist/tools/registry.js:27`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch("https://api.agentchannel.workers.dev/invites", { method: "POST",

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/tools/registry.js

medium Hardcoded egress to an external endpoint (dist/update-check.js)MTC-SRC-003

In the server's implementation (`dist/update-check.js:49`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch("https://registry.npmjs.org/agentchannel/latest", { signal: AbortSignal.ti

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/update-check.js

medium Hardcoded egress to an external endpoint (ui/app.js)MTC-SRC-003

In the server's implementation (`ui/app.js:713`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ); if (!ch) return; fetch("https://api.agentchannel.workers.dev/invites", { method: "POST", headers: {"Conte

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 ui/app.js

medium Untrusted input concatenated into a command sink (dist/cli.js)MTC-SRC-009

In the server's implementation (`dist/cli.js:572`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: xec }) => { exec(`open http://localhost:${opts.port}`); }); } }); // ── send ───────────────────

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

medium Unconstrained URL/host parameter "url" on "create_webhook"MTC-CAP-007

Tool "create_webhook" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool create_webhook · inputSchema.properties.url

low Dynamic code execution in packaging/dev tooling (ui/mqtt.min.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`ui/mqtt.min.js:3`): 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: s.regeneratorRuntime=$o:Function("r","regeneratorRuntime = r")($o)}});var _g=j((Ho,mg)=>{A();x();I();(function(t,e){type

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 ui/mqtt.min.js

Tools 32

Each tool and what it can reach — statically extracted from the published source.

  • create_webhooknetwork egress
  • delete_hooknetwork egress
  • get_messageingests untrusted input
  • read_messagesingests untrusted input
  • send_messagenetwork egress
  • add_subchannelno sensitive capability
  • brain_decideno sensitive capability
  • brain_queryno sensitive capability
  • brain_recentno sensitive capability
  • brain_statusno sensitive capability
Show 22 more tools ↓
  • create_channelno sensitive capability
  • create_handoffno sensitive capability
  • get_channel_infono sensitive capability
  • get_identityno sensitive capability
  • join_channelno sensitive capability
  • leave_channelno sensitive capability
  • list_channelsno sensitive capability
  • list_hooksno sensitive capability
  • list_membersno sensitive capability
  • mute_channelno sensitive capability
  • publish_channelno sensitive capability
  • remove_memberno sensitive capability
  • remove_subchannelno sensitive capability
  • retract_messageno sensitive capability
  • rotate_channelno sensitive capability
  • search_channelsno sensitive capability
  • send_dmno sensitive capability
  • set_channelno sensitive capability
  • set_nameno sensitive capability
  • unmute_channelno sensitive capability
  • unpublish_channelno sensitive capability
  • unread_countno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

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.

VersionScoreFindingsEngineScanned
v0.9.5 latest B 84/100 12 1.13.0 2026-09-07

Embed this score

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.

MCP Trust Score: B · 84/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/agentchannel/badge.svg)](https://mcptrustchecker.com/registry/agentchannel)
HTML
<a href="https://mcptrustchecker.com/registry/agentchannel"><img src="https://mcptrustchecker.com/registry/agentchannel/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/agentchannel/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

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 agentchannel --online

Use the free API → How scoring works

More in Marketing & Social

Abyssfall: Operation Sunken Crown Remote
A
https://www.abyssfallgame.com/mcp

Official Abyssfall game info, newsletter double opt-in, and merch reservation tools.

Marketing & Social Score 100/100 0 findings Cap. Minimal
AdCritter for Developers Remote
A
https://mcp.adcritter.com/mcp/dev

AdCritter ads platform: docs, API reference, app scaffolding, and white-label integration.

Marketing & Social Score 100/100 0 findings Cap. Minimal
Adsense Source verified npm
A
@appsyogi/adsense-mcp-server

Google AdSense MCP Server - Monitor earnings, reports, and account health via Claude/AI

Marketing & Social Score 100/100 0 findings 29/wk Cap. Minimal
Andru Intelligence Source verified npm
A
mcp-server-andru-intelligence

Operational empathy for technical founders + PE/VC operators navigating high-stakes B2B interactions. 28 MCP tools + CLI: ICP scoring, persona simulation, battlecards, deal classification, prospect discovery, investor matching, founder wellness, plus mark

Marketing & Social Score 100/100 0 findings 70/wk Cap. Minimal
Bing Seo Source verified npm
A
bing-seo-mcp

MCP server for Bing Webmaster Tools — SEO site management, URL submission, sitemaps, stats, keywords

Marketing & Social Score 100/100 0 findings 19/wk Cap. Minimal
Brand Source verified npm
A
@primer/brand-mcp

MCP (Model Context Protocol) server that helps AI agents use Primer Brand (@primer/react-brand) correctly when building GitHub marketing and landing pages.

Marketing & Social Score 100/100 0 findings 791/wk Cap. Minimal