md log mcp for VS Code
com.md-log/md-log-mcp
md-log MCP: save/update/fetch markdown by path (stdio + remote HTTP, PAT auth).
client:VS Code
transport:stdio
runtime:npm
Install md log mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mdlog-api-base-url",
"description": "MDLOG_API_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "mdlog-pat",
"description": "MDLOG_PAT",
"password": true
}
],
"servers": {
"md-log-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"md-log-mcp"
],
"env": {
"MDLOG_API_BASE_URL": "${input:mdlog-api-base-url}",
"MDLOG_PAT": "${input:mdlog-pat}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs