rise mcp for VS Code
io.github.gzlo/rise-mcp
RISE CRM MCP server — 36 tools across CRM, projects, tickets, finance, sales, HR, and reports.
client:VS Code
transport:stdio
runtime:npm
Install rise mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rise-api-url",
"description": "RISE_API_URL",
"password": true
},
{
"type": "promptString",
"id": "rise-api-key",
"description": "RISE_API_KEY",
"password": true
}
],
"servers": {
"rise-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"rise-mcp"
],
"env": {
"RISE_API_URL": "${input:rise-api-url}",
"RISE_API_KEY": "${input:rise-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