Veto MCP Server

@jigyasudham/veto npm v3.2.0 Source verified

Published by jigyasudham — publish provenance cryptographically ties this package to that repository. That is proof of origin, not an official vendor package.

93 agentic tools. 49 specialists. Every major AI CLI. Self-learning. Zero extra cost on subscriptions.

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 89 − 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 − 11 = 89. What the published surface and source actually contain:

PointsWhat was foundCategory
−11 Untrusted input concatenated into a command sink ×3 MTC-SRC-009 injection

2. Client adoption risk — 89 − 6 = 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

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 18

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

In the server's implementation (`dist/agents/security/secrets.js:44`): 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: entials profile files (~/.aws/credentials) via CI runners', 'Embedding secrets in CI/CD YAML files instead o

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/agents/security/secrets.js

high Dynamic code execution in server code (dist/agents/security/scanner.js)MTC-SRC-001

In the server's implementation (`dist/agents/security/scanner.js:29`): 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() and new Function() constructors are absent from production code', 'Input validated with

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/agents/security/scanner.js

high Dynamic code execution in server code (dist/council/lead-developer.js)MTC-SRC-001

In the server's implementation (`dist/council/lead-developer.js:26`): 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: recommendation: 'Remove eval(). Use JSON.parse() for data, redesign for logic.', }, { pattern: /\bnew\s+

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/council/lead-developer.js

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

In the server's implementation (`dist/cli.js:7`): 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 { homedir } from 'node:os'; import { fileURLToPath } from 'node:url'; 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 dist/cli.js

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

In the server's implementation (`dist/cli/claude-repair.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: { execSync } from 'node:child_process'; // True when the entry launches `node <script>` but that script no longer exists

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/cli/claude-repair.js

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

In the server's implementation (`dist/cli/statusline.js:14`): 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 { join, dirname } from 'node:path'; import { homedir } from 'node:os'; im

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

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

In the server's implementation (`dist/context/reader.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: { execSync } from 'node:child_process'; const STACK_INDICATORS = [ [['next', 'next.js'], 'Next.js'], [['react',

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/context/reader.js

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

In the server's implementation (`dist/discover.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: { execSync } from 'node:child_process'; import { readProjectContext } from './context/reader.js'; const SKIP_DIRS = new

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/discover.js

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

In the server's implementation (`dist/server/handlers/advisors.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: { execSync } from 'node:child_process'; import { recordOutcome } from '../../router/index.js'; import { runHandlerAgent,

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/server/handlers/advisors.js

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

In the server's implementation (`dist/server/handlers/generators.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: { execSync } from 'node:child_process'; import { recordOutcome } from '../../router/index.js'; import { runHandlerAgent,

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/server/handlers/generators.js

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

In the server's implementation (`dist/server/handlers/git.js:7`): 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 { recordOutcome } from '../../router/index.js'; import { readGitDiff, 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/server/handlers/git.js

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

In the server's implementation (`dist/server/handlers/review.js:6`): 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 { readGitDiff, runTripleScan } from '../scan-core.js'; import { checkDiff

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/server/handlers/review.js

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

In the server's implementation (`dist/server/scan-core.js:6`): 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: xecSyncTop } from 'node:child_process'; import { executeOne } from '../agents/executor.js'; import { buildAgenticAgentPr

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/server/scan-core.js

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

In the server's implementation (`dist/memory/local.js:563`): 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 meta = await fetch(`https://registry.npmjs.org/${encodeURIComponent(package_name)}`, { signal: controller.sig

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/memory/local.js

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

In the server's implementation (`dist/server/handlers/advisors.js:69`): 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('https://api.osv.dev/v1/querybatch', { method: 'POST', hea

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/server/handlers/advisors.js

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

In the server's implementation (`dist/server/handlers/advisors.js:193`): 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 out = execSync(`git grep -rn "${regex}" ${includeArgs} -- . ":(exclude)node_modules" ":(exclude)dist"`

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/server/handlers/advisors.js

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

In the server's implementation (`dist/server/handlers/generators.js:374`): 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 blame = execSync(`git log --oneline -10 -- "${fileHint}"`, { cwd: projectDir || undefined, timeout: 4000

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/server/handlers/generators.js

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

In the server's implementation (`dist/server/handlers/git.js:143`): 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: ry { stat = execSync(`git diff ${baseBranch}...HEAD --no-color --stat`, { cwd: projectDir, timeout: 5000, st

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/server/handlers/git.js

Tools 25

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

  • environmentreads sensitive data
  • codeno sensitive capability
  • code-reviewno sensitive capability
  • contextno sensitive capability
  • debug-incidentno sensitive capability
  • deploy-checklistno sensitive capability
  • depthno sensitive capability
  • descriptionno sensitive capability
  • diffno sensitive capability
  • errorno sensitive capability
Show 15 more tools ↓
  • explain-fileno sensitive capability
  • file_pathno sensitive capability
  • focusno sensitive capability
  • full-reviewno sensitive capability
  • Knowledge Baseno sensitive capability
  • languageno sensitive capability
  • Latest Sessionno sensitive capability
  • Learned Patternsno sensitive capability
  • new-featureno sensitive capability
  • onboardno sensitive capability
  • planno sensitive capability
  • project_dirno sensitive capability
  • Recent Memoryno sensitive capability
  • Saved Sessionsno sensitive capability
  • security-auditno sensitive capability

What this scan could not see

Versions 5

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.2.0 latest B 83/100 18 1.13.0 2026-09-07
v3.1.2 B 83/100 18 1.12.1 2026-08-22
v3.1.0 B 81/100 19 1.12.1 2026-08-20
v3.0.0 B 81/100 19 1.12.1 2026-08-12
v2.9.0 B 81/100 19 1.12.1 2026-08-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/jigyasudham-veto/badge.svg)](https://mcptrustchecker.com/registry/jigyasudham-veto)
HTML
<a href="https://mcptrustchecker.com/registry/jigyasudham-veto"><img src="https://mcptrustchecker.com/registry/jigyasudham-veto/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/jigyasudham-veto/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 @jigyasudham/veto --online

Use the free API → How scoring works

More in Security & Testing