From dex-by-dave
Local Python MCP server for HashiCorp Vault integration. Provides secrets access and management using VAULT_PATH env var. Runs as subprocess on user's machine.
npx claudepluginhub davekilleen/dexAdd to your .mcp.json:
{
"mcpServers": {
"work": {
"command": "python",
"args": [
"-m",
"core.mcp.work_server"
],
"env": {
"VAULT_PATH": "${VAULT_PATH}"
}
}
}
}pythonVAULT_PATH=${VAULT_PATH}