Rust library wrapping 12 AI CLI tools as pluggable LLM providers — with OpenAI API client, ACP headless mode, agent loop, MCP server, and OpenAI-compatible REST API
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"dravr-embacle": {
"command": "cargo",
"args": [
"run",
"--",
"dravr-embacle"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add dravr-embacle cargo run -- dravr-embacle
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"dravr-embacle": {
"command": "cargo",
"args": [
"run",
"--",
"dravr-embacle"
]
}
}
}
📋 Copy