From dex-by-dave
Local Python MCP server (core.mcp.career_server) for career-related tools or data. Runs as subprocess; requires VAULT_PATH for Vault secrets access. Specific capabilities unclear from config.
npx claudepluginhub davekilleen/dexAdd to your .mcp.json:
{
"mcpServers": {
"career": {
"command": "python",
"args": [
"-m",
"core.mcp.career_server"
],
"env": {
"VAULT_PATH": "${VAULT_PATH}"
}
}
}
}pythonVAULT_PATH=${VAULT_PATH}