Livespace CRM MCP Server for VS Code
io.github.proautomator/livespace-crm-mcp
Unofficial local MCP server for Livespace CRM with read tools and guarded writes.
client:VS Code
transport:stdio
runtime:npm
Install Livespace CRM MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-port",
"description": "MCP_PORT",
"password": true
},
{
"type": "promptString",
"id": "livespace-subdomain",
"description": "LIVESPACE_SUBDOMAIN",
"password": true
},
{
"type": "promptString",
"id": "livespace-api-key",
"description": "LIVESPACE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "livespace-api-secret",
"description": "LIVESPACE_API_SECRET",
"password": true
},
{
"type": "promptString",
"id": "mcp-auth-token",
"description": "MCP_AUTH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "livespace-mcp-enable-writes",
"description": "LIVESPACE_MCP_ENABLE_WRITES",
"password": true
},
{
"type": "promptString",
"id": "mcp-request-state-key",
"description": "MCP_REQUEST_STATE_KEY",
"password": true
}
],
"servers": {
"livespace-crm-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"livespace-crm-mcp"
],
"env": {
"MCP_PORT": "${input:mcp-port}",
"LIVESPACE_SUBDOMAIN": "${input:livespace-subdomain}",
"LIVESPACE_API_KEY": "${input:livespace-api-key}",
"LIVESPACE_API_SECRET": "${input:livespace-api-secret}",
"MCP_AUTH_TOKEN": "${input:mcp-auth-token}",
"LIVESPACE_MCP_ENABLE_WRITES": "${input:livespace-mcp-enable-writes}",
"MCP_REQUEST_STATE_KEY": "${input:mcp-request-state-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs