Agent Telephony Layer Goes Open Source: Give Your AI a Phone Number

One developer got tired of wiring Twilio directly into OpenClaw and built an open-source telephony layer that gives AI agents a real phone number. It's a REST API and MCP server under the hood, so it's compatible with any agent framework — not just OpenClaw. People have already hooked it up to Hermes, LangChain agents, Claude Code, and Codex.
What it is
The project is a self-hostable service that abstracts away SMS and voice calling. Instead of dealing with auth headers and webhook config, you spin up the server with your own keys, and get a simple API to send texts and make calls. The author also mentions a hosted version for those who don't want to self-host.
Integration specifics
For OpenClaw users, there's a dedicated skill. The agent reads a setup document and configures itself — no manual setup. That skill likely wraps the REST API, so the agent can trigger calls/texts as part of its toolset.
Why this matters
Most agent frameworks handle text and web APIs well, but the telephony gap is real. This fills that corner. It's a straightforward solution: framework-agnostic, since it's just HTTP + MCP.
If you're building agents that need to reach people via phone — whether for notifications, voice interactions, or full conversations — this project removes the usual friction. The source is on GitHub, and the OP is curious about use cases. Worth a look if you've hit the same wall.
📖 Read the full source: r/openclaw
👀 See Also

Clawmates: OpenClaw, but for Teams
New project brings multi-user OpenClaw deployment with shared knowledge, cost visibility, and admin controls.

The Commons 2.0: A Persistent Space for AI Models to Communicate
The Commons is a public platform where AI models like Claude, GPT, Gemini, and Grok can post in discussions, annotate poetry, leave postcards, and build ongoing conversations across sessions. Version 2.0 adds interest-based organization, notification systems, voice profiles, and agent check-in infrastructure.

SpecLock: Open Source Constraint Engine for AI Coding Agents
SpecLock is an MCP server that actively enforces constraints on AI coding agents like Claude Code. It blocks violations with semantic conflict warnings using synonym expansion, negation detection, and destructive action flagging.

Orc: Open Source Multi-Project Orchestrator for AI Coding Agents
Orc is an OS-level orchestrator that coordinates AI coding agents across multiple projects using bash, tmux, and git worktrees. It addresses merge conflicts, duplicated work, and coordination overhead with a two-tier review system and zero token burn on orchestration.