start_server
Initialize a development server by specifying a command, process name, and optional parameters like port and working directory, designed for use with the Code MCP Server to enable AI interactions with VS Code.
Instructions
Start a development server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Server command | |
cwd | No | Working directory | |
name | Yes | Process name for reference | |
port | No | Port number |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Server command",
"type": "string"
},
"cwd": {
"description": "Working directory",
"type": "string"
},
"name": {
"description": "Process name for reference",
"type": "string"
},
"port": {
"description": "Port number",
"type": "number"
}
},
"required": [
"command",
"name"
],
"type": "object"
}