luca mcp for VS Code
io.github.leonardomso/luca-mcp
Work your Luca workspace from any MCP client: 67 tools for leads, conversations, and campaigns.
client:VS Code
transport:stdio
runtime:npm
Install luca mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "luca-api-key",
"description": "LUCA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "luca-api-base-url",
"description": "LUCA_API_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "luca-workspace-slug",
"description": "LUCA_WORKSPACE_SLUG",
"password": true
}
],
"servers": {
"luca-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@setluca/mcp"
],
"env": {
"LUCA_API_KEY": "${input:luca-api-key}",
"LUCA_API_BASE_URL": "${input:luca-api-base-url}",
"LUCA_WORKSPACE_SLUG": "${input:luca-workspace-slug}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs