rdstation crm mcp for VS Code
io.github.fernandoludvig/rdstation-crm-mcp
Manage RD Station CRM contacts, deals, tasks and notes, with pipeline health reports
client:VS Code
transport:stdio
runtime:npm
Install rdstation crm mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rdstation-crm-token",
"description": "RDSTATION_CRM_TOKEN",
"password": true
}
],
"servers": {
"rdstation-crm-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"rdstation-crm-mcp"
],
"env": {
"RDSTATION_CRM_TOKEN": "${input:rdstation-crm-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs