expenselm mcp server for VS Code
io.github.clarenceh/expenselm-mcp-server
An MCP server that provides access to your expense data on ExpenseLM.
client:VS Code
transport:stdio
runtime:pypi
Install expenselm mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "expenselm-api-key",
"description": "EXPENSELM_API_KEY",
"password": true
}
],
"servers": {
"expenselm-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"expenselm-mcp-server"
],
"env": {
"EXPENSELM_API_KEY": "${input:expenselm-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