Syncline MCP Server (Python) for VS Code
com.kekwanu/syncline-mcp-server-python
Syncline MCP Server (Python) - AI-powered meeting scheduling with intelligent auto-scheduling
client:VS Code
transport:stdio
runtime:pypi
Install Syncline MCP Server (Python) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "syncline-api-key",
"description": "SYNCLINE_API_KEY",
"password": true
}
],
"servers": {
"syncline-mcp-server-python": {
"type": "stdio",
"command": "uvx",
"args": [
"syncline-mcp-server"
],
"env": {
"SYNCLINE_API_KEY": "${input:syncline-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs