VoiceFlip
Server Details
AI voice agents on SMB websites — fully autonomous build in 2–3 min. 23 MCP tools. EU, GDPR.
- 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.8/5 across 4 of 4 tools scored.
Each tool serves a clearly distinct purpose: vf_signup starts the signup process, vf_complete_signup finishes it, vf_get_pricing provides pricing information, and vf_health checks server status. There is no overlap in their functionality, so an agent can easily choose the right tool.
All tools share the 'vf_' prefix, and most follow a verb_noun pattern (complete_signup, get_pricing). However, 'health' and 'signup' are one-word names that break the pattern slightly, though they remain clear and consistent in style.
With only 4 tools, the server is tightly scoped to its purpose of managing signup and pricing. This is an appropriate size—not too thin, not overloaded.
The tool set covers the core signup lifecycle (initiate, complete) and essential informational endpoints (pricing, health). A minor gap is the lack of a way to retrieve account status or cancel a signup, but for the apparent scope this is sufficient and workable.
Available Tools
4 toolsvf_complete_signupAInspect
Complete an agentic signup with a Stripe Shared Payment Token. Creates the VoiceFlip account, stores PAYG billing identity, and returns the API key once.
| Name | Required | Description | Default |
|---|---|---|---|
| spt | Yes | ||
| intent_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 full burden. It discloses that the tool creates the account, stores billing identity, and returns the API key once, which is useful behavioral context. However, it omits details about idempotency, error handling, or prerequisite validation.
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 that conveys purpose, effects, and return value without unnecessary words. It earns its place entirely.
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 covers the main outcomes and the unique return behavior, but lacks mentions of prerequisites (e.g., requiring a prior vf_signup call), failure conditions, and the full response shape. For a completion tool with no output schema, it is adequate but not comprehensive.
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 0% and the description only implicitly explains 'spt' as the 'Stripe Shared Payment Token'. It does not explain the 'intent_token' parameter at all, leaving both parameters under-specified for an agent.
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 ('Complete') and resource ('agentic signup'), and lists concrete side effects (creates account, stores billing, returns API key once). This distinguishes it from sibling tools like vf_signup, which likely handles the initial signup.
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 word 'Complete' implies this is the final step after an initial signup, and the sibling vf_signup likely precedes it. However, the description does not explicitly state when to use this tool versus alternatives, nor does it name exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
vf_get_pricingAInspect
Return current VoiceFlip agentic pricing: PAYG per-conversation rates, monthly agentic plan, and wholesale default discount.
| Name | Required | Description | Default |
|---|---|---|---|
| currency | No | usd |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the transparency burden. It states that the tool returns pricing and lists the components, implying a read-only operation. However, it does not disclose whether the pricing is fetched live, cached, or whether any side effects occur, nor does it mention how invalid currencies are handled.
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, succinct sentence that front-loads the core purpose ('Return current VoiceFlip agentic pricing') and then provides specific detail. There is no wasted wording or redundancy.
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 lists the components of the returned pricing. However, it omits any reference to the currency parameter, which is the only input, leaving the agent to infer how the parameter affects the result. Without an output schema, this omission is notable.
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, 'currency', is not mentioned in the description at all, despite having low schema coverage (0%). The schema defines the enum and default, but the description fails to explain that the currency parameter determines which currency the pricing is returned in, or that it defaults to USD. This leaves a significant gap in understanding.
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 'Return' and names the exact resource ('current VoiceFlip agentic pricing'), then enumerates what's included (PAYG per-conversation rates, monthly agentic plan, wholesale default discount). This clearly distinguishes it from sibling tools like signup and health.
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 this tool is used when you need current pricing information, but it does not explicitly state when to use it versus alternatives or provide any exclusions. There are no sibling tools for pricing, so the context is somewhat clear, but guidance on preconditions or currency-specific use is absent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
vf_healthAInspect
Returns VoiceFlip MCP server health and version metadata. No authentication required. Use this first to verify the server is reachable from your MCP client.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It discloses 'No authentication required' and clarifies the return value as health and version metadata. This is sufficient for a simple health check, though it doesn't cover failure modes or response schema details.
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?
Two sentences with no wasted words. The first sentence states the action, the second covers auth and usage guidance. Information is front-loaded and immediately actionable.
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 health check tool with no parameters and no output schema, the description covers all necessary aspects: what it returns, auth requirements, and when to use it. The context is complete for an agent to select and invoke it correctly.
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 tool has zero parameters, and the schema clearly shows an empty object. The description correctly implies there are no arguments by focusing solely on the health check action. Baseline of 4 applies for zero-parameter tools.
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 primary function: 'Returns VoiceFlip MCP server health and version metadata.' This is a specific verb plus resource that distinguishes it from sibling tools like vf_signup or vf_get_pricing, which focus on signup and pricing operations.
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 usage context: 'Use this first to verify the server is reachable from your MCP client.' This tells the agent when to invoke it, but there's no mention of when not to use it or alternatives, which is acceptable given its singular purpose but not fully exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
vf_signupAInspect
Initiate a VoiceFlip account signup for a business. Returns an agentic signup intent token and the appropriate next action: Stripe SPT (when Stripe Agentic Commerce is configured) or human-checkout redirect URL (fallback for regions where Stripe Agentic Commerce is unavailable, e.g. EU as of 2026-05). Public, rate-limited per IP.
| Name | Required | Description | Default |
|---|---|---|---|
| pricing_model | No | agentic_payg | |
| business_email | Yes | ||
| business_domain | Yes | ||
| preferred_locale | No | en | |
| business_company_name | No | ||
| estimated_monthly_volume | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility for behavioral disclosure. It states the tool is 'Public, rate-limited per IP' and explains the conditional next action (Stripe SPT vs. human-checkout redirect), which adds meaningful context about side effects and operational constraints. However, it does not disclose potential side effects like creating a pending account or detail failure modes.
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 a clear structure: it states the action, describes the output, and provides the fallback logic. It is front-loaded with the primary purpose and contains no filler or redundant 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?
Despite clear purpose and some behavioral details, the description is incomplete for a tool with 6 parameters, no schema descriptions, and no output schema. It omits parameter semantics, error handling, and detailed return value structure. The agent would struggle to know what inputs to provide beyond the obvious business domain and email.
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 description coverage is 0%, and the description does not mention any of the six parameters. It fails to explain the meaning or purpose of fields like business_domain, business_email, pricing_model, or preferred_locale. This is a critical gap for an agent to invoke the tool correctly.
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 and resource: 'Initiate a VoiceFlip account signup for a business.' It also describes the output (agentic signup intent token and next action) and implicitly distinguishes itself from sibling tools like vf_complete_signup by focusing on the initiation step.
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 that this tool is for starting the signup process, but it does not explicitly mention when to use it versus alternatives like vf_complete_signup. It provides context about the fallback behavior for EU, but that is more about output behavior than usage guidance. No exclusions or explicit alternative comparisons are given.
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
FlicenseCqualityDmaintenanceBest VoiceAI White Label Platform for Agencies with Full MCP Connectivity to Any Platform for Custom VoiceAi & AI Chat Integrations and You Keep 100% of the Profits32- MIT

Nexbidofficial
Alicense-qualityBmaintenanceAgentic commerce infrastructure for AI agents. MCP-native product discovery, contextual ad matching, and purchase facilitation with European privacy compliance (nDSG/GDPR).MIT