ZKshare for VS Code
io.github.sp0oby/zkshare
ZKshare stdio MCP: store/prove/share, semantic search, sandbox proxy to HTTPS /api/v1/context.
client:VS Code
transport:stdio
runtime:npm
Install ZKshare in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "zkshare-api-key",
"description": "ZKSHARE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "zkshare-api-url",
"description": "ZKSHARE_API_URL",
"password": true
}
],
"servers": {
"zkshare": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"zkshare-mcp"
],
"env": {
"ZKSHARE_API_KEY": "${input:zkshare-api-key}",
"ZKSHARE_API_URL": "${input:zkshare-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs