Telnyx
Server Details
The Telnyx MCP server is an official implementation of the Model Context Protocol that enables AI clients (like Claude Desktop, Cursor, and OpenAI Agents) to interact with Telnyx's telephony, messaging, and AI assistant APIs. It provides comprehensive capabilities including making and managing phone calls, sending SMS/MMS messages, purchasing and configuring phone numbers, creating AI assistants with custom instructions, managing cloud storage buckets, scraping and embedding website content, and handling integration secrets. The server exists as both a local implementation and a remotely hosted version, allowing developers to integrate real-world communication infrastructure directly into AI applications.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.9/5 across 6 of 6 tools scored. Lowest: 3.2/5.
All tools have distinct purposes: the first three are for inspecting and invoking the Telnyx API endpoints, while the last three launch separate MCP apps for specific domains. There is no overlap or ambiguity.
Tool names follow two consistent patterns: 'verb_api_endpoint' for API operations and 'open_<app_name>' for launching apps. While patterns differ, they are each internally consistent and clearly indicate the tool's category.
With 6 tools, the server is well-scoped. The API exploration tools cover essential operations (list, schema, invoke), and the app launcher tools provide access to specialized features without overloading the tool list.
The server provides a complete surface for its purpose: full API endpoint discovery and invocation, plus launching dedicated apps for number intelligence, usage/cost analysis, and voice monitoring. No obvious gaps.
Available Tools
6 toolsget_api_endpoint_schemaARead-onlyIdempotentInspect
Get the schema for an endpoint in the Telnyx TypeScript API. You can use the schema returned by this tool to invoke an endpoint with the invoke_api_endpoint tool.
| Name | Required | Description | Default |
|---|---|---|---|
| endpoint | Yes | The name of the endpoint to get the schema for. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false. The description adds the purpose of the returned schema (for invocation) but does not disclose additional behavioral details such as error cases or output format specifics. With annotations covering the safety profile, this is adequate but minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences: the first front-loads the purpose and the second provides practical usage. No redundant wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple, read-only, one-parameter tool with strong annotations, the description is complete. It explains what the tool returns and how to use it in conjunction with invoke_api_endpoint, covering the intended workflow.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter 'endpoint' has 100% schema description coverage, and the tool description does not add any meaning beyond what the schema already provides. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Get the schema for an endpoint in the Telnyx TypeScript API' with a specific verb and resource, and explicitly references the invoke_api_endpoint tool, distinguishing it from sibling tools like list_api_endpoints and invoke_api_endpoint.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear usage context by stating the schema can be used to invoke an endpoint with invoke_api_endpoint. However, it does not explicitly mention when not to use this tool or compare it with list_api_endpoints.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
invoke_api_endpointADestructiveInspect
Invoke an endpoint in the Telnyx TypeScript API. Note: use the list_api_endpoints tool to get the list of endpoints and get_api_endpoint_schema tool to get the schema for an endpoint.
| Name | Required | Description | Default |
|---|---|---|---|
| args | Yes | The arguments to pass to the endpoint. This must match the schema returned by the `get_api_endpoint_schema` tool. | |
| endpoint_name | Yes | The name of the endpoint to invoke. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds no behavioral context beyond the annotations. It does not mention side effects, authentication needs, rate limits, or expected outcomes. The annotations already indicate destructive/read-write behavior, but the description does not elaborate on implications for the agent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, consisting of two sentences that convey purpose and usage guidance without any fluff. It is front-loaded with the primary action and immediately follows with helpful pointers.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a generic invocation tool, especially with the reference to helper tools for endpoint discovery and schema. However, it does not mention response handling, error conditions, or the need for authentication, which would make it more complete given the tool's broad scope.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema fully describes both parameters (endpoint_name and args), including the need for args to match the endpoint schema. The description does not add extra semantic detail but references the schema tool, which is enough to satisfy a baseline score given 100% schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('Invoke') and resource ('endpoint in the Telnyx TypeScript API'). It also distinguishes itself from sibling tools like list_api_endpoints and get_api_endpoint_schema, which serve discovery purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance by pointing to list_api_endpoints for obtaining the endpoint list and get_api_endpoint_schema for the schema, implying that invoke_api_endpoint is used after these. However, it does not state when not to use this tool, so it falls short of a perfect score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_api_endpointsARead-onlyIdempotentInspect
List or search for all endpoints in the Telnyx TypeScript API
| Name | Required | Description | Default |
|---|---|---|---|
| search_query | No | An optional search query to filter the endpoints by. Provide a partial name, resource, operation, or tag to filter the endpoints returned. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is known. The description adds no further behavioral context such as pagination, authentication needs, or return format. It does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler or redundancy. It efficiently communicates the core function without extra words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With one optional parameter, a clear purpose, and thorough annotations, the description is largely sufficient. However, it does not specify what fields are returned or the nature of the search (e.g., partial match), which would be helpful given no output schema. This is a minor gap for a simple list tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% because the only parameter (search_query) is fully described in the input schema. The tool description itself does not add any parameter meaning beyond the schema, so the baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List or search') and a clear resource ('all endpoints in the Telnyx TypeScript API'), which precisely states what the tool does. It is clearly distinct from siblings like get_api_endpoint_schema, which retrieves a schema for a specific endpoint.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or alternative guidance is provided. The description implies usage for discovering endpoints, but it does not mention when to choose this over get_api_endpoint_schema or invoke_api_endpoint. Usage is only implied through the tool's purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
open_number_intelligenceARead-onlyIdempotentInspect
Open the Telnyx Number Intelligence MCP App for phone number lookup, validation, and enrichment workflows.
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Optional no-op app opener action; omit to open the app. | open |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which fully cover the safety profile. The description adds the workflow context but does not disclose any further behavioral traits (e.g., what happens upon opening, whether it returns data, or any side effects). It does not contradict the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It efficiently conveys the action, resource, and purpose without redundancy or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (0 required params, one no-op optional param) and the comprehensive annotations, the description covers the essential 'what' and 'why.' However, it could slightly improve by noting that the app is opened for later user interaction rather than performing actions itself, but this is a minor gap for a low-complexity tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage: it fully describes the single 'action' parameter with an enum and explanation. The description adds no additional parameter information, so it does not go beyond the schema. Baseline 3 is appropriate given the schema already does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Open', the resource 'Telnyx Number Intelligence MCP App', and its purpose for 'phone number lookup, validation, and enrichment workflows.' This distinguishes it from sibling openers like 'open_usage_cost_explorer' and 'open_voice_monitor' by specifying a unique app and workflow.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage contexts via 'phone number lookup, validation, and enrichment workflows,' but it does not explicitly mention when-to-use vs alternatives or exclusions. There is no naming of alternative tools or guidance on choosing this over the sibling openers, so usage guidance is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
open_usage_cost_explorerARead-onlyIdempotentInspect
Open the Telnyx Usage & Cost Explorer MCP App for usage and cost analysis.
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Optional no-op app opener action; omit to open the app. | open |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds no extra behavioral details beyond the purpose (opening an app), which is consistent with annotations and not contradictory.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one short sentence that conveys the tool's purpose without unnecessary words. It is front-loaded and every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple app-opening tool with strong annotations and full schema coverage, the description is sufficient. It does not explain return values, but no output schema exists and the open action implies launching a UI, which is clear enough.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'action' is fully documented in the schema with enum and description, including its optional no-op nature. The description does not need to add more, as schema coverage is 100%.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('open') and names the exact resource ('Telnyx Usage & Cost Explorer MCP App'), making it distinct from sibling open tools like open_number_intelligence and open_voice_monitor. It clearly states the tool's function with no ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'for usage and cost analysis' provides clear context for when this tool is appropriate. It does not explicitly mention when not to use it or alternatives, but the context is enough for an agent to decide.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
open_voice_monitorARead-onlyIdempotentInspect
Open the Telnyx Voice Monitor MCP App for observing and troubleshooting voice traffic.
| Name | Required | Description | Default |
|---|---|---|---|
| action | No | Optional no-op app opener action; omit to open the app. | open |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description's 'open' and 'observing' align with these but add no further behavioral traits like authentication needs, return format, or UI behavior. It adds context that the app is for voice traffic, which is purpose rather than behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence of 14 words, front-loading the verb 'Open' and the specific app name. Every word contributes to clarity, with no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a low-complexity tool with one optional no-op parameter and no output schema, the description fully conveys its purpose and context. It distinguishes from siblings and aligns with annotations, so nothing critical is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides 100% coverage for the single optional parameter 'action', including its enum, default, and description. The tool description does not mention parameters, but the schema handles it fully, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses 'Open' as a specific verb, names the exact resource 'Telnyx Voice Monitor MCP App', and states the purpose 'observing and troubleshooting voice traffic'. This clearly differentiates it from siblings like open_number_intelligence and open_usage_cost_explorer.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies the tool is for voice traffic monitoring/troubleshooting, giving a clear context for when to use it. However, it does not explicitly mention when not to use it or name alternative tools, so it lacks exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA comprehensive MCP server for TELNYX integration, enabling AI assistants to send SMS messages, make voice calls, and handle incoming communications via webhooks.MIT
- FlicenseCqualityDmaintenanceMCP server enabling interaction with Telnyx telephony, messaging, and AI assistant APIs through natural language.46
- AlicenseBqualityFmaintenanceThe Voyp MCP Server enables AI systems to integrate with VOYP's calling capabilities, allowing for secure telephony actions such as making calls, scheduling appointments, and tracking call statuses through the Model Context Protocol.71810MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that gives AI agents hands to make phone calls, send messages, and handle CRM/task workflows. It runs with a simulated provider for zero-cost testing and can switch to real providers like Twilio and ElevenLabs.MIT