wallabag MCP for VS Code
io.github.rusty4444/wallabag-mcp
MCP server for wallabag read-it-later entries, tags, and annotations.
client:VS Code
transport:stdio
runtime:pypi
Install wallabag MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wallabag-base-url",
"description": "WALLABAG_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "wallabag-access-token",
"description": "WALLABAG_ACCESS_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "wallabag-client-id",
"description": "WALLABAG_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "wallabag-client-secret",
"description": "WALLABAG_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "wallabag-username",
"description": "WALLABAG_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "wallabag-password",
"description": "WALLABAG_PASSWORD",
"password": true
}
],
"servers": {
"wallabag-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"wallabag-mcp"
],
"env": {
"WALLABAG_BASE_URL": "${input:wallabag-base-url}",
"WALLABAG_ACCESS_TOKEN": "${input:wallabag-access-token}",
"WALLABAG_CLIENT_ID": "${input:wallabag-client-id}",
"WALLABAG_CLIENT_SECRET": "${input:wallabag-client-secret}",
"WALLABAG_USERNAME": "${input:wallabag-username}",
"WALLABAG_PASSWORD": "${input:wallabag-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs