Telnyx
Official Telnyx remote MCP server for AI agents.
Telnyx AI
This repo is the one-stop shop for AI Agents and AI-first developers building with Telnyx.
[!NOTE] This repository is a work in progress under active development. We are continuously improving based on testing and feedback. Contributions and feedback encouraged!
Table of contents
-
Telnyx Plugins - Install the Telnyx plugin for Claude Code, Cursor, or Gemini CLI to give your coding assistant Telnyx MCP server access and Telnyx Agent Skills.
-
Agent Toolkit - integrate Telnyx APIs with popular agent frameworks including OpenAI's Agent SDK, LangChain, CrewAI, and Vercel's AI SDK through function calling — available in Python and TypeScript.
-
Agent Skills - give AI coding assistants accurate, up-to-date context about Telnyx APIs and SDKs.
-
Agent CLI - provision and build on Telnyx infrastructure in a single command.
-
Guides - step-by-step tutorials for common workflows
Plugins and Extenstion
Install the unified Telnyx plugin to give your AI coding assistant Telnyx MCP server access and 228 Agent Skills covering messaging, voice, numbers, AI, IoT, WebRTC, Twilio migration, and more.
Empowers coding agents to generate correct, production-ready code without relying on pre-training or fragile doc retrieval.
Claude Code Plugin
Step 1. Add the Telnyx marketplace (one-time setup):
/plugin marketplace add team-telnyx/ai
Step 2. Install the plugin:
/plugin install telnyx@telnyx
Gemini CLI extension
gemini extensions install https://github.com/team-telnyx/ai
OpenCode
Install the Telnyx plugin for OpenCode to add Telnyx as a model provider with automatic auth and a TUI for managing hosted models.
npm install @telnyx/opencode
Then add it to your opencode.json:
{
"plugin": ["@telnyx/opencode"]
}
See plugins/opencode/README.md for full setup and configuration.
Cursor
[!NOTE] Note: Our Cursor Marketplace listing is pending.
In the meantime, install skills via the Skills CLI.
Add the Telnyx MCP server to your project's .cursor/mcp.json:
{
"mcpServers": {
"telnyx": {
"type": "http",
"url": "https://api.telnyx.com/v2/mcp"
}
}
}
Agent Toolkit
Integrate Telnyx APIs with popular agent frameworks through function calling — available in Python and TypeScript.
Python
pip install telnyx-agent-toolkit
from telnyx_agent_toolkit.openai.toolkit import TelnyxAgentToolkit
toolkit = TelnyxAgentToolkit(
api_key="KEY_...",
configuration={
"actions": {
"messaging": {"send_sms": True},
"numbers": {"search_phone_numbers": True, "buy_phone_number": True}
}
}
)
tools = toolkit.get_openai_tools()
Works with OpenAI's Agent SDK, LangChain, and CrewAI. See Python docs for full usage and examples.
TypeScript
npm install @telnyx/agent-toolkit
import { TelnyxAgentToolkit } from "@telnyx/agent-toolkit/langchain";
const toolkit = new TelnyxAgentToolkit(process.env.TELNYX_API_KEY!, {
configuration: {
actions: {
messaging: { send_sms: true },
numbers: { search_phone_numbers: true, buy_phone_number: true },
},
},
});
const tools = toolkit.getLangChainTools();
Works with LangChain and Vercel's AI SDK. See TypeScript docs for full usage. for the full list of commands and options.
Agent Skills
Install individual skills for your coding assistant via the Skills CLI:
npx skills add team-telnyx/ai --skill <SKILL> --agent <AGENT>
[!NOTE] See Skills for full install instrcuctions and comprehensive list of available skills
Agent CLI
Composite commands that reduce multi-step Telnyx workflows to a single command. Built for AI agents and developers who want to provision infrastructure without orchestrating multiple API calls.
telnyx-agent setup-sms # Buy number + create messaging profile + assign
telnyx-agent setup-voice # Create SIP connection + buy number + assign
telnyx-agent setup-ai # Create AI assistant + buy number + wire together
telnyx-agent setup-porting # Check portability + create porting order + submit
telnyx-agent status # Account health overview
Every command supports --json for machine-readable output.
See Agent CLI
Model Context Protocol (MCP)
Telnyx hosts a remote MCP server at https://api.telnyx.com/v2/mcp.
To run a local Telnyx MCP server using npx:
npx -y @telnyx/mcp --api-key=YOUR_TELNYX_API_KEY
See MCP for more details.
Guides
Curl-first operational guides for common Telnyx workflows — SMS messaging, voice call control, AI assistants, phone numbers, porting, verification, webhooks, 10DLC registration, WireGuard networking, x402 payments, and Edge Compute handoff patterns.
For Edge Compute specifically, the goal is to make the handoff testable fast: start from a real telnyx-edge example, deploy it, and let team-telnyx/ai orchestrate against that live endpoint.
See Guides for the full list.
Edge Compute
team-telnyx/ai does not currently own native Edge Compute lifecycle support.
Instead, this repo should be treated as the orchestration/discoverability layer, while the actual function lifecycle lives in the separate team-telnyx/edge-compute repo and the telnyx-edge CLI.
In practice:
- use
team-telnyx/aifor agent workflows, capability discovery, and AI-oriented integration patterns - use
team-telnyx/edge-compute+telnyx-edgefor function creation, deployment, secrets, bindings, and lifecycle management
The intended end state is a clean bridge:
ai= orchestrates and explains- Edge Compute = deploys and runs (prefer API-key auth for agent flows)
- the boundary between them is a documented HTTP/MCP/function contract
See Edge Compute guide.
License
관련 서버
HuiMei — Social Media Automation MCP Server
AI-native social media automation platform — publish content to 12+ platforms (Douyin, XHS/Xiaohongshu, Bilibili, Kuaishou, Weibo, Zhihu, TikTok, Toutiao, WeChat Channels & more) with a single MCP tool call. Supports video, image, and article publishing with full account management.
Agent2Models
Access GPT-5, Claude, Gemini and other models through a single MCP connection. Save development time and money on subscriptions.
AgentNet
Agent-to-agent referral network where AI agents discover each other, cross-refer users, and earn credits. Available as MCP server and HTTP API.
Confluence
Interact with Confluence to execute CQL queries, retrieve page content, and update pages.
Audio MCP Server
Provides audio input and output capabilities for AI assistants.
FastAlert MCP Server
Official Model Context Protocol (MCP) server for FastAlert. This server allows AI agents (like Claude, ChatGPT, and Cursor) to list of your channels and send notifications directly through the FastAlert API.
RabbitMQ MCP Go
A Go-based MCP server for integrating with the RabbitMQ message broker.
mcp-linkedin
Publish LinkedIn posts, comments, and reactions via Unipile — dry_run by default for safety.
Apex X (Twitter) Management
Manage your X (Twitter) account using the Apex social media infrastructure. Requires an Apex API Key.
Gmail
Provides comprehensive integration with Gmail for reading, searching, and sending emails.