Flow Nexus MCP Server

flow-nexus npm v0.1.128

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.

🚀 AI-Powered Swarm Intelligence Platform - Gamified MCP Development with 70+ Tools

Trust grade
B
85/100
Last scanned get badge →
Trust
B · 85/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
B Why this grade threat 92 − adoption risk = 85/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 − 8.4 = 92. 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.1 Hardcoded JSON Web Token in test/example/packaging ×3 MTC-SRC-008 exfiltration

2. Client adoption risk — 92 − 7 = 85. 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 25

high Sensitive-source and external-sink co-existMTC-FLOW-004

Tools that read sensitive data ([execution_files_list, storage_list]) and tools that can send data out ([agent_spawn, sandbox_upload, storage_upload, template_create]) are exposed together. An agent can move private data to the sink.

Evidence: sources [execution_files_list, storage_list] → sinks [agent_spawn, sandbox_upload, storage_upload, template_create]

Fix: Keep secret-reading and egress capabilities on separate, separately-approved servers.

Location: flow execution_files_list → agent_spawn

high Tool "agent_spawn" exposes command/code executionMTC-CAP-001

Tool "agent_spawn" appears to run shell commands or evaluate code (keyword "spawn" in tool name). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool agent_spawn

high Tool "template_create" exposes command/code executionMTC-CAP-001

Tool "template_create" appears to run shell commands or evaluate code (parameter "command"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.

Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.

Location: tool template_create

high Shell/command execution in server code (bin/flow-nexus.js)MTC-SRC-002

In the server's implementation (`bin/flow-nexus.js:9`): 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 { spawn } from 'child_process'; import { fileURLToPath } from 'url'; import { dirname, join } from 'path'; impor

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 bin/flow-nexus.js

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

In the server's implementation (`bin/mcp.js:8`): 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 { spawn } from 'child_process'; import { fileURLToPath } from 'url'; import { dirname, join } from 'path'; cons

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 bin/mcp.js

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

In the server's implementation (`cli.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: exec, spawnSync } from 'child_process'; import { promisify } from 'util'; import supabaseClient from './src/services/sup

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 cli.js

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

In the server's implementation (`src/cli/index.js:3`): 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 { spawn } from 'child_process'; import { fileURLToPath } from 'url'; import { dirname, join } from 'path'; impor

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 src/cli/index.js

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

In the server's implementation (`src/cli/payment-cli.js:78`): 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: exec } = await import('child_process'); exec(`echo "${result.paymentUrl}" | pbcopy`); console.log(c

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 src/cli/payment-cli.js

high Shell/command execution in server code (src/index-real.js)MTC-SRC-002

In the server's implementation (`src/index-real.js:16`): 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 { exec } from 'child_process'; import { promisify } from 'util'; const execAsync = promisify(exec); const requ

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 src/index-real.js

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

In the server's implementation (`src/index.js:39`): 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 { exec } from 'child_process'; import { promisify } from 'util'; import distributedNeuralTools from './tools/di

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 src/index.js

high Shell/command execution in server code (src/mcp-bridge.js)MTC-SRC-002

In the server's implementation (`src/mcp-bridge.js:8`): 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 { spawn } from 'child_process'; import http from 'http'; import { fileURLToPath } from 'url'; import { dirname,

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 src/mcp-bridge.js

medium Hardcoded egress to an external endpoint (src/services/auth-service.js)MTC-SRC-003

In the server's implementation (`src/services/auth-service.js:46`): 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.flow-nexus.com/auth/validate', { method: 'POST', headers: { 'Cont

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 src/services/auth-service.js

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

In the server's implementation (`src/cli/payment-cli.js:79`): 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: ld_process'); exec(`echo "${result.paymentUrl}" | pbcopy`); console.log(chalk.green('✅ Payment link

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 src/cli/payment-cli.js

medium Unconstrained command parameter "claude_command_template" on "template_create"MTC-CAP-006

Tool "template_create" takes a command-shaped parameter "claude_command_template" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool template_create · inputSchema.properties.claude_command_template

medium Unconstrained command parameter "startup_script" on "template_create"MTC-CAP-006

Tool "template_create" takes a command-shaped parameter "startup_script" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.

Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.

Location: tool template_create · inputSchema.properties.startup_script

medium Dynamic module load from a non-literal (bin/flow-nexus.js)MTC-SRC-005

In the server's implementation (`bin/flow-nexus.js:241`): 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: : serverPath; import(serverUrl).then(module => { const FlowNexusServer = module.FlowNexusServer || modul

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 bin/flow-nexus.js

low Hardcoded JSON Web Token in test/example/packaging (scripts/init-user.js)MTC-SRC-008

A hardcoded JSON Web Token (a public-by-design (anon/publishable) key — RLS, not secrecy, protects it) appears in `scripts/init-user.js:28`. Verify whether this is a real credential; if so, remove and rotate it.

Evidence: JSON Web Token: eyJh…(redacted)

Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.

Location: server scripts/init-user.js

low Hardcoded JSON Web Token in server code (src/config/supabase-config.js)MTC-SRC-008

A hardcoded JSON Web Token (a public-by-design (anon/publishable) key — RLS, not secrecy, protects it) appears in `src/config/supabase-config.js:9`. Verify whether this is a real credential; if so, remove and rotate it.

Evidence: JSON Web Token: eyJh…(redacted)

Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.

Location: server src/config/supabase-config.js

low Hardcoded JSON Web Token in server code (src/services/supabase-client.js)MTC-SRC-008

A hardcoded JSON Web Token (a public-by-design (anon/publishable) key — RLS, not secrecy, protects it) appears in `src/services/supabase-client.js:26`. Verify whether this is a real credential; if so, remove and rotate it.

Evidence: JSON Web Token: eyJh…(redacted)

Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.

Location: server src/services/supabase-client.js

low Mutating tool "agent_spawn" declares no destructiveHintMTC-CAP-005

Tool "agent_spawn" 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 agent_spawn

low Mutating tool "template_create" declares no destructiveHintMTC-CAP-005

Tool "template_create" 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 template_create

low Unconstrained path parameter "file_type" on "execution_files_list"MTC-CAP-008

Tool "execution_files_list" takes a path parameter "file_type" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool execution_files_list · inputSchema.properties.file_type

low Unconstrained path parameter "path" on "storage_list"MTC-CAP-008

Tool "storage_list" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool storage_list · inputSchema.properties.path

low Shell/command execution in packaging/dev tooling (scripts/debug-chat.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/debug-chat.js:3`): 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 { spawn } from 'child_process'; import path from 'path'; import { fileURLToPath } from 'url'; const __filename

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 scripts/debug-chat.js

low Shell/command execution in packaging/dev tooling (scripts/fix-critical-issues.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/fix-critical-issues.js:351`): 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 { exec } from 'child_process'; import { promisify } from 'util'; import chalk from 'chalk'; const execAsync =

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 scripts/fix-critical-issues.js

Tools 130

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

  • agent_spawnruns code / shell
  • execution_files_listreads sensitive data
  • sandbox_uploadnetwork egress
  • storage_listreads sensitive data
  • storage_uploadnetwork egress
  • template_createruns code / shell
  • achievement_listno sensitive capability
  • Achievements Catalogno sensitive capability
  • achievements_listno sensitive capability
  • Active Challengesno sensitive capability
Show 120 more tools ↓
  • Advanced Workflow Systemno sensitive capability
  • analytics_app_statsno sensitive capability
  • analytics_store_overviewno sensitive capability
  • analytics_user_statsno sensitive capability
  • API Referenceno sensitive capability
  • API Testing Suiteno sensitive capability
  • App Store Onlyno sensitive capability
  • App Templates Catalogno sensitive capability
  • app_analyticsno sensitive capability
  • app_getno sensitive capability
  • app_installedno sensitive capability
  • app_listno sensitive capability
  • app_publishno sensitive capability
  • app_removeno sensitive capability
  • app_searchno sensitive capability
  • app_store_complete_challengeno sensitive capability
  • app_store_earn_ruvno sensitive capability
  • app_store_list_templatesno sensitive capability
  • app_store_publish_appno sensitive capability
  • app_updateno sensitive capability
  • audit_logno sensitive capability
  • auth_initno sensitive capability
  • auth_loginno sensitive capability
  • auth_registerno sensitive capability
  • auth_statusno sensitive capability
  • Categories Treeno sensitive capability
  • challenge_getno sensitive capability
  • challenge_listno sensitive capability
  • challenge_submitno sensitive capability
  • challenges_listno sensitive capability
  • check_balanceno sensitive capability
  • configure_auto_refillno sensitive capability
  • create_payment_linkno sensitive capability
  • credits_balanceno sensitive capability
  • credits_earnno sensitive capability
  • credits_spendno sensitive capability
  • credits_transferno sensitive capability
  • Current Leaderboardsno sensitive capability
  • daa_agent_createno sensitive capability
  • daa_agent_statusno sensitive capability
  • daa_get_recommendationsno sensitive capability
  • daa_quality_checkno sensitive capability
  • Development Toolsno sensitive capability
  • Enterprise Suiteno sensitive capability
  • execution_file_getno sensitive capability
  • execution_stream_statusno sensitive capability
  • execution_stream_subscribeno sensitive capability
  • Featured Appsno sensitive capability
  • Flow Nexus Completeno sensitive capability
  • Flow Nexus Neuralno sensitive capability
  • Gamification Featuresno sensitive capability
  • get_payment_historyno sensitive capability
  • Getting Started Guideno sensitive capability
  • github_repo_analyzeno sensitive capability
  • leaderboard_getno sensitive capability
  • market_datano sensitive capability
  • neural_trainno sensitive capability
  • Node.js API Templateno sensitive capability
  • Node.js REST APIno sensitive capability
  • Production Configurationno sensitive capability
  • Python ML Pipelineno sensitive capability
  • React Application Templateno sensitive capability
  • React Dashboardno sensitive capability
  • Real-time Channelsno sensitive capability
  • realtime_broadcastno sensitive capability
  • realtime_listno sensitive capability
  • realtime_subscribeno sensitive capability
  • realtime_unsubscribeno sensitive capability
  • ruv_balanceno sensitive capability
  • ruv_historyno sensitive capability
  • sandbox_configureno sensitive capability
  • sandbox_createno sensitive capability
  • sandbox_deleteno sensitive capability
  • sandbox_executeno sensitive capability
  • sandbox_listno sensitive capability
  • sandbox_logsno sensitive capability
  • sandbox_statusno sensitive capability
  • sandbox_stopno sensitive capability
  • seraphina_chatno sensitive capability
  • Smart Code Formatterno sensitive capability
  • storage_deleteno sensitive capability
  • storage_get_urlno sensitive capability
  • Store Analytics Overviewno sensitive capability
  • Swarm Coordinationno sensitive capability
  • Swarm Coordination Exampleno sensitive capability
  • swarm_create_from_templateno sensitive capability
  • swarm_destroyno sensitive capability
  • swarm_initno sensitive capability
  • swarm_listno sensitive capability
  • swarm_metricsno sensitive capability
  • swarm_scaleno sensitive capability
  • swarm_statusno sensitive capability
  • swarm_templates_listno sensitive capability
  • system_healthno sensitive capability
  • system_infono sensitive capability
  • task_orchestrateno sensitive capability
  • template_create_fromno sensitive capability
  • template_deployno sensitive capability
  • template_deploymentsno sensitive capability
  • template_getno sensitive capability
  • template_listno sensitive capability
  • Trending Appsno sensitive capability
  • user_loginno sensitive capability
  • user_logoutno sensitive capability
  • user_profileno sensitive capability
  • user_registerno sensitive capability
  • user_reset_passwordno sensitive capability
  • user_statsno sensitive capability
  • user_update_passwordno sensitive capability
  • user_update_profileno sensitive capability
  • user_upgradeno sensitive capability
  • user_verify_emailno sensitive capability
  • WASM DAA Agents Statusno sensitive capability
  • workflow_agent_assignno sensitive capability
  • workflow_audit_trailno sensitive capability
  • workflow_createno sensitive capability
  • workflow_executeno sensitive capability
  • workflow_listno sensitive capability
  • workflow_queue_statusno sensitive capability
  • workflow_statusno 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.1.128 latest B 85/100 25 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 · 85/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/flow-nexus/badge.svg)](https://mcptrustchecker.com/registry/flow-nexus)
HTML
<a href="https://mcptrustchecker.com/registry/flow-nexus"><img src="https://mcptrustchecker.com/registry/flow-nexus/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/flow-nexus/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 flow-nexus --online

Use the free API → How scoring works

More in Developer Tools