add_allowed_command
Add specific commands to the allowed list in Code MCP Server, enabling AI agents to execute authorized actions within VS Code efficiently.
Instructions
Add a command to the project's allowed commands list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to add to allowed list |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to add to allowed list",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}