create_directory
Generate a new directory at a specified path using the Code MCP Server, enabling AI agents to interact with VS Code and manage file structures programmatically.
Instructions
Create a new directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path for the new directory |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path for the new directory",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}