Stats
Actions
Tags
From vean
Custom MCP server running locally via Bun, using environment variables for plugin root and project directory. Purpose unclear from configuration, likely a development workflow tool for Vean projects.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"vean": {
"command": "bun",
"args": [
"--cwd",
"${CLAUDE_PLUGIN_ROOT}",
"src/bridge/mcp/server.ts"
],
"env": {
"VEAN_PLUGIN_ROOT": "${CLAUDE_PLUGIN_ROOT}",
"VEAN_PROJECT_DIR": "${CLAUDE_PROJECT_DIR}"
}
}
}
}Review these signals before enabling this server
This server has elevated permissions. Review the source code before enabling.
Server configuration and connection parameters
bunCommand-line arguments passed to the server process
Environment variables set when the server starts
VEAN_PLUGIN_ROOT=${CLAUDE_PLUGIN_ROOT}VEAN_PROJECT_DIR=${CLAUDE_PROJECT_DIR}npx claudepluginhub tshah-95/vean