sharedoc mcp for VS Code
io.github.augustusw/sharedoc-mcp
Share agent-generated Markdown as links — GitHub gists today, your own server tomorrow.
client:VS Code
transport:stdio
runtime:npm
Install sharedoc mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sharedoc-backend",
"description": "SHAREDOC_BACKEND",
"password": true
},
{
"type": "promptString",
"id": "sharedoc-public-url",
"description": "SHAREDOC_PUBLIC_URL",
"password": true
}
],
"servers": {
"sharedoc-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"sharedoc-mcp"
],
"env": {
"SHAREDOC_BACKEND": "${input:sharedoc-backend}",
"SHAREDOC_PUBLIC_URL": "${input:sharedoc-public-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs