Joplin MCP Server for VS Code
io.github.alondmnt/joplin-mcp
FastMCP server exposing Joplin notes, notebooks, tags, and imports.
client:VS Code
transport:stdio
runtime:pypi
Install Joplin MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "joplin-token",
"description": "JOPLIN_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "joplin-url",
"description": "JOPLIN_URL",
"password": true
}
],
"servers": {
"joplin-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"joplin-mcp"
],
"env": {
"JOPLIN_TOKEN": "${input:joplin-token}",
"JOPLIN_URL": "${input:joplin-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs