alternativespe mcp for VS Code
io.github.luarss/alternativespe-mcp
Private-market data across Southeast Asia via the Alternatives Partner API v3
client:VS Code
transport:stdio
runtime:npm
Install alternativespe mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "altdmp-api-key",
"description": "ALTDMP_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "altdmp-base-url",
"description": "ALTDMP_BASE_URL",
"password": true
}
],
"servers": {
"alternativespe-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"alternativespe-mcp"
],
"env": {
"ALTDMP_API_KEY": "${input:altdmp-api-key}",
"ALTDMP_BASE_URL": "${input:altdmp-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs