Console Automation MCP Server

mcp-console-automation npm v1.0.2

Published by ooples — 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.

MCP server for AI-driven console application automation and monitoring

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/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
A Why this grade threat 100 − adoption risk = 93/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 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 7 = 93. 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 35

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

In the server's implementation (`dist/test-smart-executor.js:21`): 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: C:\\Users\\yolan\\.ssh\\id_rsa', port: 22 } }); console.log(`✓ Session creat

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/test-smart-executor.js

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

In the server's implementation (`dist/test-ssh-key.js:8`): 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: C:\\Users\\yolan\\.ssh\\id_ed25519'; if (!existsSync(keyPath)) { console.log(`SSH key not found at $

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/test-ssh-key.js

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

In the server's implementation (`dist/test-ssh.js:16`): 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: C:\\Users\\yolan\\.ssh\\id_ed25519' } }); console.log(`SSH session created with ID: ${sessio

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/test-ssh.js

high Reads a sensitive credential path or dumps the environment (test-mcp-ssh.js)MTC-SRC-006

In the server's implementation (`test-mcp-ssh.js:29`): 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: C:\\Users\\yolan\\.ssh\\id_rsa', // Add these options to prevent hanging tryKeyboard: false, rea

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 test-mcp-ssh.js

high Dynamic evaluation of a non-literal value (dist/core/WorkflowEngine.js)MTC-SRC-010

In the server's implementation (`dist/core/WorkflowEngine.js:541`): Evaluating a runtime value as code (rather than a fixed literal) executes whatever reaches it — a direct RCE primitive, and almost never necessary in legitimate 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: const func = new Function(...Object.keys(context), `return ${expression}`); return func(...Object

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

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

Tool "console_execute_command" appears to run shell commands or evaluate code (keyword "execute command" in tool name, 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 console_execute_command

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

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

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

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

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

In the server's implementation (`dist/core/DataPipelineManager.js:300`): 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: const func = new Function('value', rule.value); return Boolean(func(value));

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

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

In the server's implementation (`dist/core/TriggerManager.js:375`): 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: const func = new Function(`return ${expression}`); return Boolean(func()); } catc

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

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

In the server's implementation (`dist/core/WorkflowEngine.js:541`): 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: const func = new Function(...Object.keys(context), `return ${expression}`); return func(...Object

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

high Dynamic code execution in server code (src/core/DataPipelineManager.ts)MTC-SRC-001

In the server's implementation (`src/core/DataPipelineManager.ts:422`): 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: const func = new Function('value', rule.value as string); return Boolean(func(value)); } ca

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/core/DataPipelineManager.ts

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

In the server's implementation (`debug-process-spawning.js:1`): 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: spawn, execSync } from 'child_process'; import fs from 'fs'; /** * Debug script to analyze why PowerShell processes ar

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 debug-process-spawning.js

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

In the server's implementation (`diagnostics-cli.js:20`): 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 { readFileSync, writeFileSync, existsSync, mkdirSync, readdirSync } from

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

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

In the server's implementation (`dist/core/ConsoleManager.js:1`): 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 { EventEmitter } from 'events'; import { v4 as uuidv4 } from 'uuid'; impo

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

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

In the server's implementation (`dist/core/HealthMonitor.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: ; import { exec } from 'child_process'; import { promisify } from 'util'; const execAsync = promisify(exec); /** * Comp

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

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

In the server's implementation (`dist/core/SSHAdapter.js:1`): 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 { EventEmitter } from 'events'; import { platform } from 'os'; import { 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 dist/core/SSHAdapter.js

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

In the server's implementation (`dist/core/SessionManager.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: import { spawn } from 'child_process'; import { v4 as uuidv4 } from 'uuid'; import { Logger } from '../utils/logger.js'

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

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

In the server's implementation (`dist/core/SimpleCommandExecutor.js:1`): 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, exec } from 'child_process'; import { promisify } from 'util'; import { Logger } from '../utils/logger.js'; 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 dist/core/SimpleCommandExecutor.js

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

In the server's implementation (`dist/core/WindowsSSHAdapter.js:1`): 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 { EventEmitter } from 'events'; import { platform } from 'os'; import { L

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

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

In the server's implementation (`dist/mcp/DirectReplacementMethod.js:1`): 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: nc, exec, spawn } from 'child_process'; import { promisify } from 'util'; import { McpError, ErrorCode } from '@modelcon

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

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

In the server's implementation (`dist/protocols/AnsibleProtocol.js:1`): 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 * as fs from 'fs'; import * as path from 'path'; import * as os from 'os'

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/protocols/AnsibleProtocol.js

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

In the server's implementation (`dist/protocols/AzureProtocol.js:541`): 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://management.azure.com${bastionResourceId}?api-version=2021-02-01`, { h

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/protocols/AzureProtocol.js

medium Hardcoded egress to an external endpoint (src/protocols/AzureProtocol.ts)MTC-SRC-003

In the server's implementation (`src/protocols/AzureProtocol.ts:745`): 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://management.azure.com${bastionResourceId}?api-version=2021-02-01`, { headers

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/protocols/AzureProtocol.ts

medium Unconstrained command parameter "command" on "console_execute_command"MTC-CAP-006

Tool "console_execute_command" takes a command-shaped parameter "command" 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 console_execute_command · inputSchema.properties.command

medium Unconstrained command parameter "command" on "console_use_profile"MTC-CAP-006

Tool "console_use_profile" takes a command-shaped parameter "command" 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 console_use_profile · inputSchema.properties.command

medium Unconstrained command parameter "command" on "console_execute_async"MTC-CAP-006

Tool "console_execute_async" takes a command-shaped parameter "command" 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 console_execute_async · inputSchema.properties.command

medium Dynamic module load from a non-literal (dist/core/ProtocolFactory.js)MTC-SRC-005

In the server's implementation (`dist/core/ProtocolFactory.js:525`): 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: const module = await import(modulePath); const ProtocolClass = module[className]; if (!Protoc

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

medium Dynamic module load from a non-literal (dist/protocols/GCPProtocol.js)MTC-SRC-005

In the server's implementation (`dist/protocols/GCPProtocol.js:612`): 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: credentials = require(options.keyFilename); } else if (options.credentials) { cred

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/protocols/GCPProtocol.js

medium Dynamic module load from a non-literal (src/protocols/GCPProtocol.ts)MTC-SRC-005

In the server's implementation (`src/protocols/GCPProtocol.ts:767`): 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: ) { credentials = require(options.keyFilename); } else if (options.credentials) { credentials = options.

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/protocols/GCPProtocol.ts

medium Dynamic module load from a non-literal (validate-protocols.js)MTC-SRC-005

In the server's implementation (`validate-protocols.js:96`): 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: const module = await import(filePath); ProtocolClass = module[protocolInfo.name]; if (!ProtocolClass) {

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 validate-protocols.js

low Reads a sensitive credential path or dumps the environment in packaging/dev tooling (tests/comprehensive-test-suite.ts)MTC-SRC-006

In a packaging/dev/install script (shipped, but not the server runtime) (`tests/comprehensive-test-suite.ts:140`): 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: args: ['-i', '~/.ssh/id_rsa', 'user@host'], consoleType: 'bash' }); try { const ou

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 tests/comprehensive-test-suite.ts

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

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

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

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

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

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

Tools 40

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

  • console_execute_asyncruns code / shell
  • console_execute_commandruns code / shell
  • console_use_profileruns code / shell
  • console_assert_exit_codeno sensitive capability
  • console_assert_no_errorsno sensitive capability
  • console_assert_outputno sensitive capability
  • console_assert_stateno sensitive capability
  • console_cancel_jobno sensitive capability
  • console_cleanup_jobsno sensitive capability
  • console_cleanup_sessionsno sensitive capability
Show 30 more tools ↓
  • console_clear_outputno sensitive capability
  • console_compare_snapshotsno sensitive capability
  • console_create_sessionno sensitive capability
  • console_detect_errorsno sensitive capability
  • console_get_alertsno sensitive capability
  • console_get_command_historyno sensitive capability
  • console_get_job_metricsno sensitive capability
  • console_get_job_outputno sensitive capability
  • console_get_job_progressno sensitive capability
  • console_get_job_resultno sensitive capability
  • console_get_job_statusno sensitive capability
  • console_get_monitoring_dashboardno sensitive capability
  • console_get_outputno sensitive capability
  • console_get_resource_usageno sensitive capability
  • console_get_session_metricsno sensitive capability
  • console_get_session_stateno sensitive capability
  • console_get_streamno sensitive capability
  • console_get_system_metricsno sensitive capability
  • console_list_jobsno sensitive capability
  • console_list_profilesno sensitive capability
  • console_list_sessionsno sensitive capability
  • console_remove_profileno sensitive capability
  • console_save_profileno sensitive capability
  • console_save_snapshotno sensitive capability
  • console_send_inputno sensitive capability
  • console_send_keyno sensitive capability
  • console_start_monitoringno sensitive capability
  • console_stop_monitoringno sensitive capability
  • console_stop_sessionno sensitive capability
  • console_wait_for_outputno sensitive capability

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.0.2 latest A 93/100 35 1.13.0 2026-09-09

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: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/mcp-console-automation/badge.svg)](https://mcptrustchecker.com/registry/mcp-console-automation)
HTML
<a href="https://mcptrustchecker.com/registry/mcp-console-automation"><img src="https://mcptrustchecker.com/registry/mcp-console-automation/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/mcp-console-automation/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 mcp-console-automation --online

Use the free API → How scoring works

More in Developer Tools