CharterBench for VS Code
io.github.auburnduke/charterbench
Every U.S. bank and credit union: ratios, peers, growth and change signals from FDIC/NCUA filings.
client:VS Code
transport:stdio
runtime:npm
Install CharterBench in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "charterbench-api-key",
"description": "CHARTERBENCH_API_KEY",
"password": true
}
],
"servers": {
"charterbench": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"charterbench-mcp"
],
"env": {
"CHARTERBENCH_API_KEY": "${input:charterbench-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