Kylas CRM for VS Code
io.github.kylastech/kylas-crm
MCP server for Kylas CRM: create, search, and manage leads. Requires KYLAS_API_KEY.
client:VS Code
transport:stdio
runtime:pypi
Install Kylas CRM in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kylas-api-key",
"description": "KYLAS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "kylas-base-url",
"description": "KYLAS_BASE_URL",
"password": true
}
],
"servers": {
"kylas-crm": {
"type": "stdio",
"command": "uvx",
"args": [
"kylas-crm-mcp-server"
],
"env": {
"KYLAS_API_KEY": "${input:kylas-api-key}",
"KYLAS_BASE_URL": "${input:kylas-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs