Skip to content

Releases: agent-next/call-use

call-use v0.1.1

15 Mar 14:33

Choose a tag to compare

call-use v0.1.0

15 Mar 14:07

Choose a tag to compare

call-use v0.1.0

Give your AI agent the ability to make phone calls. The browser-use for phones.

Highlights

  • Python SDK (CallAgent): 3 lines of code to make an outbound call
  • REST API (FastAPI): 8 endpoints for call lifecycle management
  • CLI (call-use dial): make calls from the terminal
  • MCP Server: native tool integration for Claude Code and other MCP-compatible agents

Features

  • IVR navigation (DTMF tones, menu traversal)
  • Human takeover (pause agent, join call, hand back)
  • Approval flow (agent asks before sensitive actions)
  • Structured CallOutcome with transcript, events, disposition
  • Phone validation with premium-rate and Caribbean number blocking
  • Rate limiting for REST API

Quick start

pip install call-use
from call_use import CallAgent

outcome = await CallAgent(
    phone="+18001234567",
    instructions="Ask about store hours",
    approval_required=False,
).call()

Links

Full changelog

https://github.com/agent-next/call-use/blob/main/CHANGELOG.md