From dex-by-dave
Local Python MCP server for calendar operations like event management and scheduling. Uses VAULT_PATH to access secrets from a vault for authentication.
npx claudepluginhub davekilleen/dexAdd to your .mcp.json:
{
"mcpServers": {
"calendar": {
"command": "python",
"args": [
"-m",
"core.mcp.calendar_server"
],
"env": {
"VAULT_PATH": "${VAULT_PATH}"
}
}
}
}pythonVAULT_PATH=${VAULT_PATH}