FragDenStaat for VS Code
io.github.notdirk/fds-mcp
Freedom-of-information requests for Germany via FragDenStaat.de, the froide FOI portal.
client:VS Code
transport:stdio
runtime:pypi
Install FragDenStaat in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "fds-mcp-base-url",
"description": "FDS_MCP_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "fds-token",
"description": "FDS_TOKEN",
"password": true
}
],
"servers": {
"fds-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"fds-mcp"
],
"env": {
"FDS_MCP_BASE_URL": "${input:fds-mcp-base-url}",
"FDS_TOKEN": "${input:fds-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs