Enables execution of bash commands with support for timeouts and background jobs, allowing file operations, build commands, system inspection, and long-running tasks
Local Onlydomdomegg
Awaiting current scanNpm · 1.2.0
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
1Distribution channel
2Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence
Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.
Install and connect
Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
Independent exact-version security scans
Continuous release and vulnerability monitoring
Risk-change alerts with capability context
Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.
Current version evidence
No public current-version evidence is available yet.
Current protocol inventory
2025-06-18Negotiated protocol
shell-exec-mcpServer-reported name
1Capability groups
Aug 17, 2026Observed
Tools 2
Tool
Category
Annotations
Risk
executeRun a command in bash.
Returns stdout, stderr, and exit code. Default timeout is 5 seconds.
For long-running commands, set 'background: true' to run in background and get a job ID. Then use get_status to check on it.
Tips:
- Use background mode for commands that take more than a few seconds
- For file searches, use 'find' or 'grep'
- For file operations, use 'mv', 'rm', 'mkdir -p', 'stat' etc.Input schema
{
"type": "object",
"properties": {
"command": {
"type": "string",
"description": "The bash command to run"
},
"timeout_ms": {
"type": "number",
"description": "Timeout in milliseconds (default: 5000)"
},
"background": {
"type": "boolean",
"description": "Run in background and return job ID"
}
},
"required": [
"command"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
—
—
get_job_statusCheck status of a background job.
Returns stdout/stderr collected so far, exit code (null if still running), and whether the job is still running.
Completed jobs are cleaned up after their status is read.Input schema
{
"type": "object",
"properties": {
"jobId": {
"type": "string",
"description": "The job ID returned from execute with background: true"
}
},
"required": [
"jobId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
—
—
Resources 0
None observed.
Resource templates 0
None observed.
Prompts 0
None observed.
Remote endpoints
Endpoint
Transport
Authentication
Health
Observed
No verified remote endpoint is linked.
Shell Exec MCP Server questions
How do I install Shell Exec MCP Server?
Install the selected package version with: npm install --save-exact shell-exec-mcp@1.2.0
What tools does Shell Exec MCP Server provide?
Shell Exec MCP Server exposed 2 tools during independent protocol observation, including execute, get_job_status.
Is Shell Exec MCP Server secure?
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
Explore related MCP server guides
Curated product and capability guides containing this catalog record.