run_shell_command
Execute whitelisted shell commands (npm, yarn, git, node, npx, tsc, eslint, prettier) in the workspace for streamlined development processes within the AI Development Pipeline MCP.
Instructions
Run a whitelisted shell command in the workspace (npm, yarn, git, node, npx, tsc, eslint, prettier)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}