weckr for VS Code
com.useweckr/weckr
Ask which of your customers cost more in LLM calls than they pay, per user and per feature.
client:VS Code
transport:stdio
runtime:npm
Install weckr in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "weckr-api-key",
"description": "WECKR_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "weckr-project-id",
"description": "WECKR_PROJECT_ID",
"password": true
},
{
"type": "promptString",
"id": "weckr-base-url",
"description": "WECKR_BASE_URL",
"password": true
}
],
"servers": {
"weckr": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@weckr/mcp"
],
"env": {
"WECKR_API_KEY": "${input:weckr-api-key}",
"WECKR_PROJECT_ID": "${input:weckr-project-id}",
"WECKR_BASE_URL": "${input:weckr-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