save_project_config
Save project-specific configurations to a .vscode-mcp.toml file for consistent setup across the workspace directory, ensuring streamlined development workflows.
Instructions
Save project-specific configuration to .vscode-mcp.toml
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | Yes | Project configuration object | |
path | No | Path to workspace directory (defaults to current) |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "Project configuration object",
"type": "object"
},
"path": {
"description": "Path to workspace directory (defaults to current)",
"type": "string"
}
},
"required": [
"config"
],
"type": "object"
}