一键导入
dograh
Self-hosted voice AI platform — Vapi/Retell alternative with MCP and visual workflow builder
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Self-hosted voice AI platform — Vapi/Retell alternative with MCP and visual workflow builder
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
| name | dograh |
| description | Self-hosted voice AI platform — Vapi/Retell alternative with MCP and visual workflow builder |
| tags | ["voice-ai","telephony","selfhosted","mcp","stt","tts"] |
| related_skills | ["hermes-agent"] |
Build, deploy, and manage voice AI applications on your own infrastructure. MCP native.
git clone https://github.com/dograh-hq/dograh.git
cd dograh
pip install -e .
# Set provider keys
export OPENAI_API_KEY=*** DEEPGRAM_API_KEY=*** ELEVENLABS_API_KEY=***
# Or use .env file
cp .env.example .env
dograh serve --port 8080
curl -X POST http://localhost:8080/api/workflows \
-H "Content-Type: application/json" \
-d '{
"name": "appointment-scheduler",
"voice": "alloy",
"llm": "gpt-4",
"prompt": "You are a friendly appointment scheduler. Help callers book appointments.",
"max_duration_seconds": 300
}'
dograh mcp --port 8090
# Add to agent config:
# "mcpServers": {"dograh": {"command": "dograh", "args": ["mcp", "--port", "8090"]}}
# Start server
dograh serve --port 8080 &
# Health check
curl http://localhost:8080/health
# Create test workflow
curl -X POST http://localhost:8080/api/workflows \
-H "Content-Type: application/json" \
-d '{"name": "test", "voice": "alloy", "llm": "gpt-4", "prompt": "Say hello"}'
# List workflows
curl http://localhost:8080/api/workflows