MCP Server
Active
io.github.VBlackJack/datacron MCP Server
io.github.VBlackJack/datacron
What is the io.github.VBlackJack/datacron MCP server?
Local-first MCP server that exposes a Markdown vault through MCP.
How to install io.github.VBlackJack/datacron
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
DATACRON_VAULT_ROOTrequiredAbsolute path to the Markdown vault the server indexes and serves.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"datacron": {
"command": "uvx",
"args": [
"datacron",
"mcp",
"serve"
],
"env": {
"DATACRON_VAULT_ROOT": "<YOUR_DATACRON_VAULT_ROOT>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"datacron": {
"command": "uvx",
"args": [
"datacron",
"mcp",
"serve"
],
"env": {
"DATACRON_VAULT_ROOT": "<YOUR_DATACRON_VAULT_ROOT>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"datacron": {
"command": "uvx",
"args": [
"datacron",
"mcp",
"serve"
],
"env": {
"DATACRON_VAULT_ROOT": "<YOUR_DATACRON_VAULT_ROOT>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"datacron": {
"type": "stdio",
"command": "uvx",
"args": [
"datacron",
"mcp",
"serve"
],
"env": {
"DATACRON_VAULT_ROOT": "<YOUR_DATACRON_VAULT_ROOT>"
}
}
}
}Claude Code
claude mcp add datacron --env DATACRON_VAULT_ROOT=<YOUR_DATACRON_VAULT_ROOT> -- uvx datacron mcp serve