datacron for VS Code
io.github.vblackjack/datacron
Local-first MCP server that exposes a Markdown vault through MCP.
client:VS Code
transport:stdio
runtime:pypi
Install datacron in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "datacron-vault-root",
"description": "DATACRON_VAULT_ROOT",
"password": true
}
],
"servers": {
"datacron": {
"type": "stdio",
"command": "uvx",
"args": [
"datacron"
],
"env": {
"DATACRON_VAULT_ROOT": "${input:datacron-vault-root}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs