Canarics
Server Details
AI call analysis and voice agents for sales teams. Signup, usage, agents and call data over MCP.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 2 tools
The two tools have clear, complementary roles: one initiates the signup flow)Skip leading? Let me redo justifications. start_signup initiates, check_signup_status polls progress. No overlap, but they are tightly coupled and one depends on the other, so an agent might need to understand the flow to avoid confusion. Still, descriptions clearly distinguish them.
Both tools follow the same verb_noun pattern: start_signup and check_signup_status. Despite only two tools, the naming convention is consistent and predictable, making the set easy to navigate.
The token count of two is at the lower boundary; it's minimal but justified for a focused signup flow. However, the server appears to be a full Canarics API that could handle many other operations (AI agents, call analysis) once authenticated, so two tools feels thin for the overall purpose.
The signup lifecycle is covered: start and check status. But once the API key is obtained, none of the expected domain tools (e.g., create_agent, list_calls) are present. This creates a dead end after authentication, leaving major functionality unimplemented.
Available Tools
2 toolscheck_signup_statusCheck signup statusAIdempotentInspect
Follow a signup started with start_signup. Poll slowly — the human step takes minutes. Once the person has claimed the link and the trial is live, this returns a one-time read-only Canarics API key for the new team: store it and use it as the Bearer key on this same MCP endpoint (and /api/v1) from then on.
| Name | Required | Description | Default |
|---|---|---|---|
| intentToken | Yes | The intentToken returned by start_signup. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations include idempotentHint=true and readOnlyHint=false, but the description adds valuable behavioral context: the tool is read-only in effect (returns a key) but has a timing consideration (polling is slow), the key is one-time and should be stored, and the tool implies a state change in the signup process. It also warns about the long polling duration, which is beyond annotations and enhances transparency. No contradiction exists.
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 concise and well-structured, with the core purpose first, followed by critical usage guidance (poll slowly) and the outcome (one-time key). Every sentence contributes to correct tool usage, with no redundant or filler content. It's front-loaded with the most important call-to-action.
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 (one parameter, no output schema), the description is complete. It covers the trigger (start_signup), the expected latency, the condition for success (claim and trial live), and the exact next step (store and use as Bearer). The agent has all necessary context without needing additional return-value details, as the description implies the key is in the response.
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 covers 100% of parameters, with the single intentToken parameter fully described. The description adds context by tying the parameter to start_signup's output and explaining how it's used in the polling flow, which is helpful beyond the schema. The description doesn't need to explain the parameter further since schema is sufficient, but the contextual link adds value.
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 purpose: to follow up on a signup initiated by start_signup, and to retrieve a one-time API key when the signup is complete. It uses a specific verb ('follow') and identifies the resource (signup status) and the key, distinguishing it from its sibling by referencing the start_signup flow.
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 explicit usage context: it tells the agent to use this tool after start_signup, to poll slowly because the human step takes minutes, and to expect the key only after the link is claimed and trial is live. It clearly states when to use it (polling loop) and what to do with the result (store and use as Bearer key), which is excellent guidance without needing to exclude alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_signupStart a Canarics signupAInspect
Begin setting up Canarics (AI voice agents + call analysis) for a company that has no account yet. Returns a claim URL: send it to the person responsible — they open it, sign in, verify their phone by SMS and accept the terms; the trial then provisions itself with a demo AI agent generated from the company website. Keep the returned intentToken to follow progress with check_signup_status. All other Canarics tools need the API key that check_signup_status hands you after the claim.
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Short context on the intended use case (max 500 chars). | |
| website | Yes | Company website URL — the demo AI agent is generated from it. | |
| language | No | Preferred conversation/summary language (e.g. Latvian, English, German). Default English. | |
| companyName | Yes | Company name. | |
| contactEmail | No | Contact email of the person who will claim the signup. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations, it discloses the full provisioning flow: claim URL, SMS verification, terms acceptance, and self-provisioning of a demo AI agent. It also reveals the dependency on the API key from check_signup_status, giving the agent a realistic model of side effects and required follow-up.
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?
Four sentences, front-loaded with the purpose and condition, then compactly covering the return value, the claim flow, follow-up, and downstream dependency. Every sentence 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?
Despite having no output schema, the description explains both return artifacts (claim URL and intentToken), what to do with them, and how they connect to check_signup_status. For a 5-parameter, 2-required tool, this is complete enough for an agent to 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?
Schema description coverage is 100% and each parameter is already documented. The description adds some context around the website being used for the demo agent, but that is already stated in the schema; there is no meaningful new parameter-level meaning.
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 a specific verb and resource: 'Begin setting up Canarics' for a company with no account yet, and names the unique deliverable, a claim URL. This clearly differentiates it from the sibling check_signup_status, which is for tracking progress.
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?
It explicitly frames the trigger condition ('for a company that has no account yet') and explains that all other Canarics tools need the API key obtained later from check_signup_status. It does not explicitly say what to do if an account already exists, but the context makes this the clear entry point.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- First observed
check_signup_status - First observed
start_signup
Related MCP Connectors
AI agent platform: manage leads, conversations, bots, calendar and CRM via MCP.
Phone, SMS & email for AI agents — one remote MCP endpoint, OAuth login, zero install.
Let AI agents query data and act across all your business apps via MCP.
Analytics your AI agent can actually use. Track, experiment, and optimize via MCP.
Related MCP Servers
AlicenseBqualityAmaintenanceMCP server for the Smallest AI platform that enables managing AI voice agents, debugging calls, and viewing analytics directly from your IDE.83461MIT- AlicenseNot gradedqualityBmaintenanceProvides AI agents with operational customer context, including typed revenue objects, persistent state, scoped tools, and human-in-the-loop handoffs through MCP, REST, and CLI.1512Apache 2.0
- AlicenseNot gradedqualityCmaintenanceAgent-first analytics MCP server for querying stats, funnels, and web/agent traffic, with server-side event ingestion and self-serve signup.189-
- AlicenseNot gradedqualityDmaintenanceProvides unified AI agent observability including tracing, cost tracking, performance monitoring, anomaly detection, and audit trails via MCP.55MIT