Shiori MCP for VS Code
io.github.rusty4444/shiori-mcp
MCP server for Shiori bookmark management and tag workflows.
client:VS Code
transport:stdio
runtime:pypi
Install Shiori MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "shiori-base-url",
"description": "SHIORI_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "shiori-session-id",
"description": "SHIORI_SESSION_ID",
"password": true
},
{
"type": "promptString",
"id": "shiori-username",
"description": "SHIORI_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "shiori-password",
"description": "SHIORI_PASSWORD",
"password": true
}
],
"servers": {
"shiori-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"shiori-mcp"
],
"env": {
"SHIORI_BASE_URL": "${input:shiori-base-url}",
"SHIORI_SESSION_ID": "${input:shiori-session-id}",
"SHIORI_USERNAME": "${input:shiori-username}",
"SHIORI_PASSWORD": "${input:shiori-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs