pmwiki mcp for VS Code
io.github.kcofoni/pmwiki-mcp
MCP server for searching and reading PmWiki pages with text queries and group filtering.
client:VS Code
transport:stdio
runtime:oci
Install pmwiki mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wiki-dir",
"description": "WIKI_DIR",
"password": true
}
],
"servers": {
"pmwiki-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/kcofoni/pmwiki-mcp:v1.0.4"
],
"env": {
"WIKI_DIR": "${input:wiki-dir}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs