canaryusers
Server Details
A flock of AI users tests your deployed app and reports where real people get stuck, with fixes.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- CanaryUsers-ai/canaryusers-mcp
- GitHub Stars
- 0
- Server Listing
- CanaryUsers MCP Server
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.5/5 across 3 of 3 tools scored.
Each tool has a clearly distinct role: canary_scan initiates a new scan, get_report_markdown retrieves a specific report, and list_recent_scans lists past scans. No overlap or ambiguity exists between them.
Two tools follow the verb_noun pattern (get_report_markdown, list_recent_scans), but canary_scan uses a noun_noun structure that doesn't explicitly indicate the action. The snake_case style is consistent, so the deviation is minor.
With only 3 tools, the server is tightly scoped to the core scan workflow: create, retrieve, and list. Every tool is necessary and sufficient for the service's purpose.
The tools cover the full lifecycle of a scan: initiate, fetch the report via scanId, and list historical scans. The workflow around asynchronous scan completion is fully supported with polling via get_report_markdown.
Available Tools
3 toolscanary_scanAInspect
Run a CanaryUsers UX scan on a DEPLOYED URL (your live or preview app — not source code). A flock of AI personas evaluates the page and reports where real users would get stuck, with concrete fixes. Returns AI-ready findings you can act on immediately. Use depth='deep' for the thorough scan that renders the page, checks it VISUALLY on desktop + mobile (catches mobile breakage and layout issues), and clicks through key flows like signup/checkout (slower, ~60-90s, uses one credit); depth='quick' (default) is a fast static check that does NOT see mobile or visual issues — use 'deep' when the user mentions mobile, layout, or visual problems. IMPORTANT: if this returns status 'running' with a scanId, the findings are not ready yet — wait ~30s, then call get_report_markdown(scanId), repeating until it returns the report. Always fetch and present the findings before stopping, then offer to fix the top issues.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The public URL to scan (e.g. your deployed app or preview URL). | |
| depth | No | 'quick' (default, fast, free) or 'deep' (clicks through flows + visual review, ~1 credit). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral burden and excels: discloses async status behavior, credit usage for deep, visual vs. static check differences, time estimates, and the required follow-up with get_report_markdown. All beyond what the schema conveys.
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 long but every sentence serves a purpose: core action, depth comparison, async handling, and post-scan instructions. It is front-loaded with the main function and logically organized.
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 tool with no output schema and no annotations, the description fully covers purpose, parameters, async polling, and next steps. It even includes the agent's required action ('Always fetch and present the findings before stopping, then offer to fix the top issues'). Nothing important 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?
Though schema covers both parameters, the description adds substantial meaning: url must be live/deployed, depth='deep' renders visually on desktop/mobile and clicks flows, uses ~1 credit, while 'quick' is a fast static check that misses those issues. This gives the agent decision-making context for selecting depth.
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?
Clearly states verb+resource: 'Run a CanaryUsers UX scan on a DEPLOYED URL' and explains the evaluation approach. Distinguishes from sibling tools by focusing on initiating a scan, while get_report_markdown retrieves reports and list_recent_scans lists past scans.
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 explicit when-to-use guidance for depth values ('use deep when the user mentions mobile, layout, or visual problems') and describes the full workflow, including waiting for status 'running' and then calling get_report_markdown. Also instructs to always present findings and offer fixes.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_report_markdownAInspect
Get one scan's full report as AI-ready markdown: the findings ranked by severity, why each matters, and how to fix it. Pass a scanId from list_recent_scans.
| Name | Required | Description | Default |
|---|---|---|---|
| scanId | Yes | The scan id (UUID) to fetch. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It describes the output format (markdown) and content (ranked findings, why each matters, how to fix it), which is useful. It does not mention side effects, but this is a read-only reporting tool with no obvious destructive 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?
Two sentences, no fluff. The first sentence immediately conveys the tool's purpose and output maturity; the second sentence gives a key prerequisite. Perfectly front-loaded and efficiently 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 single-parameter tool with no output schema and no annotations, the description sufficiently explains the tool's behavior, input source, and output content. It is complete enough 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 schema already fully describes scanId as 'The scan id (UUID) to fetch' (100% coverage), so baseline is 3. The description adds value by sourcing the scanId from list_recent_scans, which clarifies where to obtain this value and reinforces tool flow.
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 ('Get') and resource ('one scan's full report as AI-ready markdown'), and explicitly differentiates from siblings by mentioning the scanId comes from list_recent_scans. It distinguishes itself clearly from other tools.
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 provides clear context for when to use the tool ('Get one scan's full report') and instructs to pass a scanId from list_recent_scans, which implicitly guides the user to use list_recent_scans first. No explicit exclusions or alternatives, but the usage context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_recent_scansAInspect
List the most recent CanaryUsers UX scans for your account (id, URL, CanaryScore, grade, status, date). Use this to find a scan to dig into.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many to return (default 10, max 50). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description bears the full burden. It discloses returned fields and account scoping, and 'List' implies a read-only operation. However, it does not mention ordering details (beyond 'most recent'), pagination behavior, or any permission requirements, which would add transparency.
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 and front-loaded with the main action. The parenthetical list of returned fields efficiently conveys output, and the second sentence adds a useful usage hint. No unnecessary 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?
The tool is simple with one optional parameter and no output schema. The description covers purpose, returned fields, and usage, which is sufficient for an agent to select and invoke the tool correctly. Minor omissions like exact sort order or pagination details do not significantly impair completeness.
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% for the only parameter 'limit', which is fully documented in the schema. The description adds no extra meaning beyond implying that the limit controls how many recent scans are returned, so the baseline score 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?
Description clearly states the action 'List' and the resource 'CanaryUsers UX scans', with the scope 'most recent' and the specific fields returned. This distinguishes it from siblings like 'canary_scan' (likely a single scan lookup) and 'get_report_markdown' (report retrieval).
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?
Explicitly states the use case: 'Use this to find a scan to dig into.' This provides clear context for when to invoke this tool. It does not name alternatives explicitly, but the purpose and sibling names imply the distinction.
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-qualityCmaintenanceDeploys AI user personas to validate user journeys at scale, surfacing UX friction before real users encounter it.1MIT
- AlicenseAqualityDmaintenanceSimulates real users navigating your app and delivers qualitative UX feedback, including persona-driven testing, auto-friction detection, and WCAG accessibility audits.14221MIT
- Alicense-qualityDmaintenanceYour AI coding agent tests pages, copy, and flows on simulated users while building.1MIT
- Alicense-qualityAmaintenance▎ Enables AI assistants to unleash a crowd of role-played virtual users — impatient shoppers, seniors, keyboard-only users, privacy hawks, chaos monkeys — on a website. Each persona browses in a real Chromium browser, files UX/QA findings in character, and the site receives a damage report with an S–F survival grade. Accusations can be cross-examined by up to three independent verification engines2MIT
Your Connectors
Sign in to create a connector for this server.