GSA Per Diem for VS Code
io.github.1102tools/gsa-perdiem-mcp
GSA Per Diem federal travel lodging and M&IE rates. 6 tools.
client:VS Code
transport:stdio
runtime:pypi
Install GSA Per Diem in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "perdiem-api-key",
"description": "PERDIEM_API_KEY",
"password": true
}
],
"servers": {
"gsa-perdiem-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"gsa-perdiem-mcp"
],
"env": {
"PERDIEM_API_KEY": "${input:perdiem-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