creditsync for VS Code
io.github.calademos/creditsync
Track credit card benefits, welcome offers, loyalty points, and money deadlines. No bank login.
client:VS Code
transport:stdio
runtime:npm
Install creditsync in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "creditsync-api-key",
"description": "CREDITSYNC_API_KEY",
"password": true
}
],
"servers": {
"creditsync": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@creditsync-pro/mcp"
],
"env": {
"CREDITSYNC_API_KEY": "${input:creditsync-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs