Claude Flow (ruvnet) MCP Server

claude-flow npm v3.38.21

Published by ruvnet — 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.

Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/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
High
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
A Why this grade threat 100 − adoption risk = 93/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 − 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 − 7 = 93. 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
−6 capability blast radius (high) — 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.

Findings 26

high Dynamic code execution in server code (v3/@claude-flow/cli/dist/src/commands/analyze.js)MTC-SRC-001

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/analyze.js:297`): 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: securityIssues.push('new Function()'); fileStats.push({ file: filePath,

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 v3/@claude-flow/cli/dist/src/commands/analyze.js

high Dynamic code execution in server code (v3/@claude-flow/cli/dist/src/commands/neural.js)MTC-SRC-001

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/neural.js:1445`): 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: 'eval(', 'Function(', 'exec(', 'spawn(', 'child_process', 'rm -rf', 'sudo',

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 v3/@claude-flow/cli/dist/src/commands/neural.js

high Shell/command execution in server code (.claude/helpers/github-safe.js)MTC-SRC-002

In the server's implementation (`.claude/helpers/github-safe.js:22`): 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: c, execFileSync } from 'child_process'; import { writeFileSync, unlinkSync } from 'fs'; import { tmpdir } from 'os'; imp

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 .claude/helpers/github-safe.js

high Shell/command execution in server code (.claude/helpers/hook-handler.cjs)MTC-SRC-002

In the server's implementation (`.claude/helpers/hook-handler.cjs:82`): 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: st { spawn } = require('child_process'); const cliBin = resolveCliBinForHook(); const cmd = process.platform ===

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 .claude/helpers/hook-handler.cjs

high Shell/command execution in server code (.claude/helpers/statusline.cjs)MTC-SRC-002

In the server's implementation (`.claude/helpers/statusline.cjs:25`): 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 } = require('child_process'); const os = require('os'); // Configuration const CONFIG = { maxAgents:

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 .claude/helpers/statusline.cjs

high Shell/command execution in server code (v3/@claude-flow/cli/dist/src/appliance/rvfa-builder.js)MTC-SRC-002

In the server's implementation (`v3/@claude-flow/cli/dist/src/appliance/rvfa-builder.js:10`): 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 { RvfaWriter, } from './rvfa-format.js'; // ── Encryption Constants ─────

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 v3/@claude-flow/cli/dist/src/appliance/rvfa-builder.js

high Shell/command execution in server code (v3/@claude-flow/cli/dist/src/appliance/rvfa-runner.js)MTC-SRC-002

In the server's implementation (`v3/@claude-flow/cli/dist/src/appliance/rvfa-runner.js:11`): 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 } from 'node:child_process'; import { tmpdir } from 'node:os'; import { RvfaReader } from './rvfa-format.js';

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 v3/@claude-flow/cli/dist/src/appliance/rvfa-runner.js

medium Hardcoded egress to an external endpoint (v3/@claude-flow/cli/dist/src/commands/doctor.js)MTC-SRC-003

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/doctor.js:1666`): 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 resp = await fetch(`http://${bind}/status`, { headers: { authorization: `Bearer ${token}` },

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 v3/@claude-flow/cli/dist/src/commands/doctor.js

medium Hardcoded egress to an external endpoint (v3/@claude-flow/cli/dist/src/commands/neural.js)MTC-SRC-003

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/neural.js:1153`): 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 response = await fetch('https://api.pinata.cloud/pinning/pinJSONToIPFS', { 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 v3/@claude-flow/cli/dist/src/commands/neural.js

medium Hardcoded egress to an external endpoint (v3/@claude-flow/cli/dist/src/mcp-tools/agent-execute-core.js)MTC-SRC-003

In the server's implementation (`v3/@claude-flow/cli/dist/src/mcp-tools/agent-execute-core.js:166`): 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.anthropic.com/v1/messages', { method: 'POST', headers

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 v3/@claude-flow/cli/dist/src/mcp-tools/agent-execute-core.js

medium Hardcoded egress to an external endpoint (v3/@claude-flow/cli/dist/src/update/checker.js)MTC-SRC-003

In the server's implementation (`v3/@claude-flow/cli/dist/src/update/checker.js:35`): 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 response = await fetch(`https://registry.npmjs.org/${encodeURIComponent(packageName)}`, { headers: {

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 v3/@claude-flow/cli/dist/src/update/checker.js

medium Dynamic module load from a non-literal (.claude/helpers/hook-handler.cjs)MTC-SRC-005

In the server's implementation (`.claude/helpers/hook-handler.cjs:222`): 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: y { const mod = require(modulePath); return mod; } finally { console.log = origLog;

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 .claude/helpers/hook-handler.cjs

medium Dynamic module load from a non-literal (v3/@claude-flow/cli/dist/src/appliance/ruvllm-bridge.js)MTC-SRC-005

In the server's implementation (`v3/@claude-flow/cli/dist/src/appliance/ruvllm-bridge.js:249`): 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: return await import(pkg); } catch { return null; } } /** Tier-1 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 v3/@claude-flow/cli/dist/src/appliance/ruvllm-bridge.js

medium Dynamic module load from a non-literal (v3/@claude-flow/cli/dist/src/commands/agntcy/publish.js)MTC-SRC-005

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/agntcy/publish.js:101`): 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: const mod = (await import(AGNTCY_PACKAGE_NAME)); if (typeof mod.publishAgentRecord !== 'function') {

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 v3/@claude-flow/cli/dist/src/commands/agntcy/publish.js

medium Dynamic module load from a non-literal (v3/@claude-flow/cli/dist/src/commands/agntcy/runtime.js)MTC-SRC-005

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/agntcy/runtime.js:93`): 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: 0 forbid. await import(packageName); return { configured: true, reason: `${packageName} resolved`, endpo

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 v3/@claude-flow/cli/dist/src/commands/agntcy/runtime.js

medium Dynamic module load from a non-literal (v3/@claude-flow/cli/dist/src/commands/appliance.js)MTC-SRC-005

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/appliance.js:27`): 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: const mod = await import(path); return mod[exportName]; } catch { output.printError(`RVFA

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 v3/@claude-flow/cli/dist/src/commands/appliance.js

medium Dynamic module load from a non-literal (v3/@claude-flow/cli/dist/src/commands/doctor.js)MTC-SRC-005

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/doctor.js:1167`): 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: const mod = await import(specifier); if (!mod.FederationNodeState) { return {

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 v3/@claude-flow/cli/dist/src/commands/doctor.js

medium Dynamic module load from a non-literal (v3/@claude-flow/cli/dist/src/commands/init.js)MTC-SRC-005

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/init.js:52`): 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: async () => (await import(codexModuleId)).CodexInitializer, // Strategy 2: Project node_modules (works if 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 v3/@claude-flow/cli/dist/src/commands/init.js

medium Dynamic module load from a non-literal (v3/@claude-flow/cli/dist/src/commands/memory-distill.js)MTC-SRC-005

In the server's implementation (`v3/@claude-flow/cli/dist/src/commands/memory-distill.js:230`): 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: Database = (await import(mod)).default; } catch { output.writeln(output.warning('bette

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 v3/@claude-flow/cli/dist/src/commands/memory-distill.js

low Shell/command execution in packaging/dev tooling (.claude-plugin/scripts/ruflo-hook.cjs)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`.claude-plugin/scripts/ruflo-hook.cjs:27`): 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 } = require('child_process'); const fs = require('fs'); const path = require('path'); /** Exit 0 uncondition

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 .claude-plugin/scripts/ruflo-hook.cjs

low Shell/command execution in packaging/dev tooling (v3/@claude-flow/cli/dist/src/benchmarks/gaia-agent.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`v3/@claude-flow/cli/dist/src/benchmarks/gaia-agent.js:44`): 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 * as fs from 'node:fs'; import * as path from 'node:path'; import { SMOKE

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 v3/@claude-flow/cli/dist/src/benchmarks/gaia-agent.js

low Shell/command execution in packaging/dev tooling (v3/@claude-flow/cli/dist/src/benchmarks/gaia-critic.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`v3/@claude-flow/cli/dist/src/benchmarks/gaia-critic.js:35`): 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 { runGaiaAgent, } from './gaia-agent.js'; // ----------------------------

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 v3/@claude-flow/cli/dist/src/benchmarks/gaia-critic.js

low Shell/command execution in packaging/dev tooling (v3/@claude-flow/cli/dist/src/benchmarks/gaia-decomposer.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`v3/@claude-flow/cli/dist/src/benchmarks/gaia-decomposer.js:36`): 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'; // --------------------------------------------------------------------------- /

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 v3/@claude-flow/cli/dist/src/benchmarks/gaia-decomposer.js

low Shell/command execution in packaging/dev tooling (v3/@claude-flow/cli/dist/src/benchmarks/gaia-judge.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`v3/@claude-flow/cli/dist/src/benchmarks/gaia-judge.js:30`): 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'; // --------------------------------------------------------------------------- /

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 v3/@claude-flow/cli/dist/src/benchmarks/gaia-judge.js

low Dynamic module load from a non-literal in packaging/dev tooling (v3/@claude-flow/cli/dist/src/benchmarks/gaia-hardness/predictor.js)MTC-SRC-005

In a packaging/dev/install script (shipped, but not the server runtime) (`v3/@claude-flow/cli/dist/src/benchmarks/gaia-hardness/predictor.js:237`): 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: ed weights. */ import(state) { if (!Array.isArray(state.weights) || state.weights.length !=

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 v3/@claude-flow/cli/dist/src/benchmarks/gaia-hardness/predictor.js

low Dynamic module load from a non-literal in packaging/dev tooling (v3/@claude-flow/cli/dist/src/benchmarks/gaia-hardness/predictor.smoke.js)MTC-SRC-005

In a packaging/dev/install script (shipped, but not the server runtime) (`v3/@claude-flow/cli/dist/src/benchmarks/gaia-hardness/predictor.smoke.js:185`): 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: ictor(); predictor2.import(exported); assert.equal(predictor2.isTrained, true, 'imported predictor should be tra

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 v3/@claude-flow/cli/dist/src/benchmarks/gaia-hardness/predictor.smoke.js

What this scan could not see

Versions 10

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
v3.38.21 latest A 93/100 26 1.13.0 2026-09-07
v3.38.20 A 93/100 26 1.13.0 2026-09-01
v3.38.19 A 93/100 26 1.12.1 2026-08-24
v3.38.16 A 93/100 26 1.12.1 2026-08-22
v3.38.12 A 93/100 27 1.12.1 2026-08-21
Show 5 more versions ↓
v3.38.11 A 93/100 27 1.12.1 2026-08-15
v3.38.9 A 93/100 27 1.12.1 2026-08-14
v3.38.8 A 93/100 27 1.12.1 2026-08-13
v3.38.0 A 93/100 27 1.12.1 2026-08-12
v3.34.0 A 93/100 27 1.12.1 2026-08-10

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: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/claude-flow/badge.svg)](https://mcptrustchecker.com/registry/claude-flow)
HTML
<a href="https://mcptrustchecker.com/registry/claude-flow"><img src="https://mcptrustchecker.com/registry/claude-flow/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/claude-flow/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 claude-flow --online

Use the free API → How scoring works

Other implementations of Claude Flow 1

Independent packages implementing the same tool, scanned with the same engine. Compare all 2 side by side →

More in Developer Tools