sisense mcp server for VS Code
io.github.sisense/sisense-mcp-server
MCP server leveraging Sisense Intelligence for actionable insights and analytics.
client:VS Code
transport:stdio
runtime:npm
Install sisense mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sisense-url",
"description": "SISENSE_URL",
"password": true
},
{
"type": "promptString",
"id": "sisense-token",
"description": "SISENSE_TOKEN",
"password": true
}
],
"servers": {
"sisense-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@sisense/mcp-server"
],
"env": {
"SISENSE_URL": "${input:sisense-url}",
"SISENSE_TOKEN": "${input:sisense-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs