Call Me
Server Details
Your AI rings your iPhone, speaks its question, and gets your spoken answer back as text.
- 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 4.1/5 across 5 of 5 tools scored.
Each tool has a distinct purpose: initiating a call, polling call status, setting a thread title, sending a text, and waiting for replies. There is no overlap or ambiguity between them.
All tools use lowercase snake_case with a verb-led pattern (call, poll_result, set_thread_title, text, wait_for_reply). The naming is consistent and predictable.
Five tools is appropriate for a personal communication bridge. The set covers the core workflows without unnecessary bloat or missing essentials.
The tool surface covers the full lifecycle of two-way communication: initiating calls and texts, checking call outcomes, receiving replies, and managing thread context. No apparent dead ends or missing operations for the stated purpose.
Available Tools
5 toolscallAInspect
Ring the human's iPhone, speak the question aloud, and return what they
say. Waits up to ~30s; if the result comes back status "ringing", follow up
with poll_result. to is their 10-digit /call-me number (from the /call-me
iOS app — not a real phone number). Pass a previous session_token to stay
in the same thread on their phone.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | ||
| question | Yes | ||
| from_label | No | Someone's AI | |
| session_token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses the action (rings iPhone), the timeout (~30s), the special nature of the 'to' number (not a real phone number), the meaning of session_token, and the conditional "ringing" status requiring polling. This is rich, honest behavioral context beyond the schema.
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 three sentences, front-loaded with purpose, then timeout behavior, then parameter clarifications. Every sentence adds meaning and there is no repetition of schema information. It is appropriately concise and well-structured.
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 tool has no output schema, so the description must hint at return behavior. It mentions the 'ringing' status and the need to poll. It covers the core action, the special 'to' number, and session continuity. However, it does not mention failure modes (e.g., unanswered call, invalid number) or the exact return format beyond 'status', which could be useful for a complex, higher-risk 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 description coverage is 0%, so the description must compensate. It explains 'to' in detail and clarifies 'session_token' usage, and 'question' is implied by 'speak the question aloud.' However, 'from_label' is left entirely unexplained. Thus it covers about half of the parameters, which is partial compensation for the missing schema descriptions.
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 immediately states the tool's core function: 'Ring the human's iPhone, speak the question aloud, and return what they say.' This is a specific verb+resource pair that clearly distinguishes it from sibling tools like text or poll_result, which handle different communication modes or follow-ups.
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 explicitly instructs what to do if the result status is 'ringing': 'follow up with poll_result.' It also advises passing a session_token to maintain the same thread. While it doesn't explicitly contrast with text or set_thread_title, the follow-up guidance and context for the call scenario are clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
poll_resultAInspect
Check on a call that was still ringing. Waits up to ~25s for it to settle; returns the final status and transcript once the human answers, declines, or the ring times out ("missed").
| Name | Required | Description | Default |
|---|---|---|---|
| call_id | Yes | ||
| session_token | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden and it discloses that the tool waits up to ~25 seconds, settles on answer/decline/timeout, and returns a transcript. It does not mention error handling or repeated polling, but the core blocking and outcome behavior is transparent.
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 entire description is a single, front-loaded sentence that avoids filler. Each clause adds specific behavioral or outcome information, making it highly concise and well-structured.
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 polling tool with no output schema, the description adequately covers purpose, wait duration, terminal outcomes, and return content. It omits parameter-specific semantics and error cases, but the main usage context is fully delivered.
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 has 0% description coverage, yet the description never explains call_id or session_token. Although the names are intuitive, the description adds no detail about their role or format, so it fails to compensate for the low 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 uses a specific verb ('Check on') with a clear resource ('a call that was still ringing') and explains the outcome (final status and transcript). This clearly distinguishes it from sibling tools like call or wait_for_reply, as it is the polling step for a ringing call.
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 when to use it: after a call has been initiated and is still ringing, and it covers expected terminal events. It does not explicitly name alternatives or state exclusions, such as comparing to wait_for_reply, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_thread_titleAInspect
Name this session's conversation thread on the human's phone (e.g. the project or task you are working on). Shown as the thread title in the app.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| session_token | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It only states the thread title is 'shown in the app', but does not mention overwrite behavior, permissions required, or any side effects. For a mutation tool, this is insufficient.
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 with no redundant wording. It front-loads the action and provides a concrete example in the same sentence, making it easy to scan.
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 tool is simple and the description covers the core action, but it lacks essential context for a complete call: no explanation of the session token, no mention of idempotency or overwriting, and no guidance on how to retrieve the thread. Given the simplicity, a 3 is appropriate—adequate but with clear informational gaps.
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 description coverage is 0%, so the description must document the parameters. It implicitly refers to 'title' but does not explain 'session_token' at all. There is no mention of format, requirements, or how to obtain the token, leaving significant gaps.
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 the specific verb 'Name' and clearly identifies the resource as 'this session's conversation thread on the human's phone'. It also gives an example ('project or task'), which distinguishes it from sibling tools that handle calls or messages.
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 conveys when to use the tool: when working on a project or task, you can name the thread. It does not explicitly mention alternatives or exclusions, but no sibling tool serves this purpose, so the usage context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
textAInspect
Send a one-way text to the human's phone (push notification, no ring).
to is their 10-digit /call-me number. Pass a previous session_token to
stay in the same thread.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | ||
| body | Yes | ||
| from_label | No | Someone's AI | |
| session_token | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It does disclose key behavioral traits: one-way, push notification, no ring, and thread continuity via session_token. However, it omits potential errors, permissions, rate limits, or what happens after sending, so it is not fully transparent.
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 only two sentences, front-loaded with the core action and followed by essential parameter clarifications. There is no redundant or verbose language.
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 moderate complexity (4 params, no output schema) and no annotations, the description covers the main purpose and key parameters but lacks information on return values, error handling, and explicit relationship to sibling tools. It is adequate but not fully complete for an agent.
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 has 0% per-parameter description coverage, so the description must compensate. It explicitly clarifies the 'to' parameter (10-digit /call-me number) and the 'session_token' parameter (stay in the same thread). 'body' is self-explanatory, but 'from_label' is not described, leaving a partial gap.
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 'Send a one-way text to the human's phone' with a specific verb and resource, and distinguishes it from siblings by contrasting 'push notification, no ring' with a call. This leaves no ambiguity about the tool's function.
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 some context (one-way, push, no ring) and explains the 'to' and session_token parameters, but does not explicitly mention when to use this tool versus alternatives like call or wait_for_reply. The 'one-way' wording implies not for two-way interactions, but this is not stated as a clear exclusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
wait_for_replyAInspect
Wait for the human to send something back to this session — texts and voicemail transcripts arrive here. Long-polls up to wait_s (max 30s); returns {events, cursor}. Pass the returned cursor next time to only see new events. An empty events list just means nothing yet — poll again if you are still waiting.
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | ||
| wait_s | No | ||
| session_token | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the long-polling behavior ('Long-polls up to wait_s (max 30s)'), the return shape ('{events, cursor}'), cursor semantics for incremental reads, and how empty events should be interpreted. This is far beyond a minimal statement.
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 three sentences, front-loaded with the core purpose and followed by essential mechanics and usage. There is no filler; every clause contributes necessary information.
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 no output schema, the description appropriately explains the return value as {events, cursor} and hints at event content ('texts and voicemail transcripts'). It covers purpose, usage, behavior, and return for a simple polling tool, but could be more explicit about the exact event object structure and error handling, leaving it at 4.
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 has zero parameter descriptions (0% coverage), so the description must compensate. It explains 'wait_s' (max 30s), 'cursor' (pass the returned cursor), and 'session' implicitly through 'this session'. However, 'session_token' is not explicitly described, and the event structure is only partial, so 4.
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: 'Wait for the human to send something back to this session.' It distinguishes from siblings by specifying 'texts and voicemail transcripts arrive here' and positions itself as a polling tool via 'Long-polls' and 'poll again,' unlike call or text.
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?
Provides clear usage context: 'Pass the returned cursor next time to only see new events' and 'poll again if you are still waiting.' It implies the tool is for when a human reply is expected, but does not explicitly name alternatives or exclusions, so 4 rather than 5.
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
- Alicense-qualityDmaintenanceEnables AI agents to ask questions to users asynchronously via a local macOS app, allowing users to respond by text or voice.Last updated1MIT
- AlicenseAqualityAmaintenanceCall, text, or push your phone when an agent needs input mid-task — reply by voice instead of babysitting a long-running or blocked terminal.Last updated11MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to send push notifications and interactive alerts to iPhone and Mac devices via the BotBell app. It allows AI to receive user replies and manage notification bots for tasks like alerts, reminders, and remote approvals.Last updated281MIT

selectic-mcpofficial
Alicense-qualityAmaintenanceEnables AI assistants to call, text, and email businesses on your behalf, read back transcripts, recordings, and replies.Last updated30MIT