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
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:
| Points | What was found | Category |
|---|---|---|
| −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:
| Points | Adoption-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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Each tool and what it can reach — statically extracted from the published source.
agent_spawnruns code / shellexecution_files_listreads sensitive datasandbox_uploadnetwork egressstorage_listreads sensitive datastorage_uploadnetwork egresstemplate_createruns code / shellachievement_listno sensitive capabilityAchievements Catalogno sensitive capabilityachievements_listno sensitive capabilityActive Challengesno sensitive capabilityAdvanced Workflow Systemno sensitive capabilityanalytics_app_statsno sensitive capabilityanalytics_store_overviewno sensitive capabilityanalytics_user_statsno sensitive capabilityAPI Referenceno sensitive capabilityAPI Testing Suiteno sensitive capabilityApp Store Onlyno sensitive capabilityApp Templates Catalogno sensitive capabilityapp_analyticsno sensitive capabilityapp_getno sensitive capabilityapp_installedno sensitive capabilityapp_listno sensitive capabilityapp_publishno sensitive capabilityapp_removeno sensitive capabilityapp_searchno sensitive capabilityapp_store_complete_challengeno sensitive capabilityapp_store_earn_ruvno sensitive capabilityapp_store_list_templatesno sensitive capabilityapp_store_publish_appno sensitive capabilityapp_updateno sensitive capabilityaudit_logno sensitive capabilityauth_initno sensitive capabilityauth_loginno sensitive capabilityauth_registerno sensitive capabilityauth_statusno sensitive capabilityCategories Treeno sensitive capabilitychallenge_getno sensitive capabilitychallenge_listno sensitive capabilitychallenge_submitno sensitive capabilitychallenges_listno sensitive capabilitycheck_balanceno sensitive capabilityconfigure_auto_refillno sensitive capabilitycreate_payment_linkno sensitive capabilitycredits_balanceno sensitive capabilitycredits_earnno sensitive capabilitycredits_spendno sensitive capabilitycredits_transferno sensitive capabilityCurrent Leaderboardsno sensitive capabilitydaa_agent_createno sensitive capabilitydaa_agent_statusno sensitive capabilitydaa_get_recommendationsno sensitive capabilitydaa_quality_checkno sensitive capabilityDevelopment Toolsno sensitive capabilityEnterprise Suiteno sensitive capabilityexecution_file_getno sensitive capabilityexecution_stream_statusno sensitive capabilityexecution_stream_subscribeno sensitive capabilityFeatured Appsno sensitive capabilityFlow Nexus Completeno sensitive capabilityFlow Nexus Neuralno sensitive capabilityGamification Featuresno sensitive capabilityget_payment_historyno sensitive capabilityGetting Started Guideno sensitive capabilitygithub_repo_analyzeno sensitive capabilityleaderboard_getno sensitive capabilitymarket_datano sensitive capabilityneural_trainno sensitive capabilityNode.js API Templateno sensitive capabilityNode.js REST APIno sensitive capabilityProduction Configurationno sensitive capabilityPython ML Pipelineno sensitive capabilityReact Application Templateno sensitive capabilityReact Dashboardno sensitive capabilityReal-time Channelsno sensitive capabilityrealtime_broadcastno sensitive capabilityrealtime_listno sensitive capabilityrealtime_subscribeno sensitive capabilityrealtime_unsubscribeno sensitive capabilityruv_balanceno sensitive capabilityruv_historyno sensitive capabilitysandbox_configureno sensitive capabilitysandbox_createno sensitive capabilitysandbox_deleteno sensitive capabilitysandbox_executeno sensitive capabilitysandbox_listno sensitive capabilitysandbox_logsno sensitive capabilitysandbox_statusno sensitive capabilitysandbox_stopno sensitive capabilityseraphina_chatno sensitive capabilitySmart Code Formatterno sensitive capabilitystorage_deleteno sensitive capabilitystorage_get_urlno sensitive capabilityStore Analytics Overviewno sensitive capabilitySwarm Coordinationno sensitive capabilitySwarm Coordination Exampleno sensitive capabilityswarm_create_from_templateno sensitive capabilityswarm_destroyno sensitive capabilityswarm_initno sensitive capabilityswarm_listno sensitive capabilityswarm_metricsno sensitive capabilityswarm_scaleno sensitive capabilityswarm_statusno sensitive capabilityswarm_templates_listno sensitive capabilitysystem_healthno sensitive capabilitysystem_infono sensitive capabilitytask_orchestrateno sensitive capabilitytemplate_create_fromno sensitive capabilitytemplate_deployno sensitive capabilitytemplate_deploymentsno sensitive capabilitytemplate_getno sensitive capabilitytemplate_listno sensitive capabilityTrending Appsno sensitive capabilityuser_loginno sensitive capabilityuser_logoutno sensitive capabilityuser_profileno sensitive capabilityuser_registerno sensitive capabilityuser_reset_passwordno sensitive capabilityuser_statsno sensitive capabilityuser_update_passwordno sensitive capabilityuser_update_profileno sensitive capabilityuser_upgradeno sensitive capabilityuser_verify_emailno sensitive capabilityWASM DAA Agents Statusno sensitive capabilityworkflow_agent_assignno sensitive capabilityworkflow_audit_trailno sensitive capabilityworkflow_createno sensitive capabilityworkflow_executeno sensitive capabilityworkflow_listno sensitive capabilityworkflow_queue_statusno sensitive capabilityworkflow_statusno 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 |
|---|---|---|---|---|
v0.1.128 latest |
B 85/100 | 25 | 1.13.0 | 2026-09-07 |
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 flow-nexus --online
Hotel booking MCP server — 300K+ properties, real confirmation numbers, loyalty programs. Builders monetize every booking via Stripe Connect. The first MCP server that completes real hotel reservations inside AI conversations.
Manage AdGuard Home through AI assistants
Read-only Azure DevOps for MCP clients using only your existing browser session — no PAT, no Azure CLI. Browse work items, pull requests, comments, attachments and Artifacts feeds across every project, repo and feed you can access.
MCP server for Adobe Experience Manager Assets integration development
Servidor MCP para el tiempo oficial de España (API pública OpenData de AEMET). Predicción, observación y avisos como herramientas MCP tipadas.
A standalone MCP stdio bridge for Affinity by Canva's local MCP SSE server.