Stats
Actions
Tags
From arra-oracle
Runs a local MCP server from a Bun script that loads a plugin root directory. Provides file system access capabilities to Claude.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"arra-oracle": {
"command": "bun",
"args": [
"-e",
"const { join } = await import('node:path'); const { pathToFileURL } = await import('node:url'); const root = process.env.CLAUDE_PLUGIN_ROOT || process.cwd(); const mod = await import(pathToFileURL(join(root, 'bin/mcp.ts')).href); await mod.main();"
]
}
}
}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
Declared capabilities of this MCP server
npx claudepluginhub soul-brews-studio/arra-oracle-v3