decern for VS Code
io.github.statwonk/decern
MCP server for Decern CRM — contacts, deals, pipelines, tasks, and approvals.
client:VS Code
transport:stdio
runtime:pypi
Install decern in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "decern-api-key",
"description": "DECERN_API_KEY",
"password": true
}
],
"servers": {
"decern": {
"type": "stdio",
"command": "uvx",
"args": [
"decern-mcp"
],
"env": {
"DECERN_API_KEY": "${input:decern-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