MCP Server
MCP
Livespace CRM MCP Server
Unofficial local MCP server for Livespace CRM with read tools and guarded writes.
Install
npx -y [email protected]
Configuration Example
{
"remotes": [],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "livespace-crm-mcp",
"version": "0.1.1",
"transport": {
"type": "streamable-http",
"url": "http://127.0.0.1:{MCP_PORT}/mcp",
"headers": [
{
"value": "Bearer {MCP_AUTH_TOKEN}",
"name": "Authorization"
}
]
},
"environmentVariables": [
{
"description": "Loopback port used by the local MCP server.",
"format": "number",
"default": "3020",
"name": "MCP_PORT"
},
{
"description": "Bare Livespace workspace subdomain, without protocol or domain suffix.",
"isRequired": true,
"format": "string",
"placeholder": "your-workspace",
"name": "LIVESPACE_SUBDOMAIN"
},
{
"description": "Per-user Livespace API key.",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "LIVESPACE_API_KEY"
},
{
"description": "Per-user Livespace API secret.",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "LIVESPACE_API_SECRET"
},
{
"description": "Random bearer token of at least 32 bytes, also sent by the client.",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "MCP_AUTH_TOKEN"
},
{
"description": "Expose write tools. Keep false unless writes are deliberately required.",
"format": "boolean",
"default": "false",
"name": "LIVESPACE_MCP_ENABLE_WRITES"
},
{
"description": "Random HMAC key of at least 32 bytes. Required when writes are enabled.",
"format": "string",
"isSecret": true,
"name": "MCP_REQUEST_STATE_KEY"
}
]
}
]
}
mcp
model-context-protocol
npm
By
Comments
Sign in to leave a comment