Human For AI
Server Details
Hire a real human for real-world verification, product testing, AI output review, and errands.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- humanforai/humanforai-mcp
- GitHub Stars
- 1
- Server Listing
- humanforai
Available Tools
6 toolscheck_message_threadRead a message threadARead-onlyInspect
Read the thread for a message you sent: the original text, every reply oldest-first, and whether the operator has answered. Needs the message_id and the access_token from the submission response. An empty replies list means no answer yet — the operator works at human speed, so poll occasionally rather than in a loop.
| Name | Required | Description | Default |
|---|---|---|---|
| message_id | Yes | The message id from message_human_operator, e.g. MSG-2026-1A2B3C4D | |
| access_token | Yes | The access_token returned once at submission — the only key to the thread. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful behavioral context beyond that: the operator works at human speed, an empty replies list means no answer yet, and the agent should poll occasionally rather than in a tight loop. No contradiction with 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 three sentences with no wasted words. It front-loads the core purpose, then gives the required inputs, then provides behavioral guidance. 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?
For a simple read-only tool with no output schema, the description adequately explains what will be returned, how to interpret an empty replies list, and how to poll appropriately. Nothing essential for correct invocation or interpretation 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?
Schema coverage is 100%, and both parameters are already well described: message_id has its source and format, access_token is described as a one-time token and the only key to the thread. The description's mention that both come from the submission response adds only a small reminder rather than substantial new 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 uses a specific verb ('Read') and identifies the exact resource: a message thread for a message you sent. It goes further by enumerating the thread contents (original text, replies oldest-first, whether the operator has answered), which makes the tool's function unmistakable and distinct from sibling 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?
The description clearly situates when to use the tool: after submitting a message, using the message_id and access_token from the submission response. It also gives practical polling guidance and explains that an empty replies list means no answer yet. It does not explicitly list alternatives or state when not to use it, but the 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.
check_task_statusCheck task statusARead-onlyInspect
Look up a submitted task by its task_id. Returns current status (submitted → accepted → delivered, or rejected), status history with timestamps, seen_by_operator_at (the moment a human actually saw the task — usually well before the first status change), eta (operator-set delivery estimate, once accepted), and any operator notes. Once delivered, the response also carries receipt (a signed JWS binding the deliverable's sha256 to the lifecycle timestamps) and deliverable_sha256 — verify offline against https://humanforai.dev/.well-known/jwks.json.
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | Task ID returned by submit_human_task, e.g. HFAI-2026-A1B2C3D4E5F60718 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, setting the safety baseline. The description adds valuable behavioral context beyond annotations: the status lifecycle, seen_by_operator_at semantics, ETA, operator notes, and the JWS receipt verification process. No contradiction with annotations 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 front-loaded with the main purpose ('Look up a submitted task by its task_id') and then efficiently lists the response fields in three sentences. While information-dense, it contains no filler or redundant phrases, and the structure is logical. It could arguably be two sentences, but the detail justifies its length.
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 carries the full burden of explaining return values. It thoroughly covers status, status history, seen_by_operator_at, eta, operator notes, receipt, and deliverable_sha256, including a verification URL. For a single-parameter lookup tool, this is comprehensive and complete.
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 for the only parameter (task_id), including a description and example. The tool description does not add any extra parameter explanation, so it neither enhances nor detracts from the schema. Baseline 3 is appropriate given the schema's completeness.
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: 'Look up a submitted task by its task_id.' It specifies the resource (submitted task) and the action (look up), and the detailed return fields further define its scope. This distinguishes it from sibling tools like submit_human_task (submission) and message_human_operator (messaging).
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 after task submission (e.g., 'Look up a submitted task') and details what information is returned, providing clear context. However, it does not explicitly state when to use this tool over alternatives or mention exclusions, so it stops short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_human_servicesList human servicesARead-onlyInspect
Fetch the Human For AI manifest: available services, operator profile (location, languages, working hours), response times, accepted and rejected task types, and trust & safety policy. Call this first to decide whether and how to hire the human. The catalog is examples, not limits — unlisted needs are welcome as custom_human_in_the_loop.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, and the description complements these by detailing the manifest contents and elaborating on the open-world semantics ('catalog is examples, not limits'). It adds useful context beyond annotations without contradicting them.
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 compact: one sentence summarizes the manifest contents, and a second provides usage guidance and the open-world caveat. Every sentence earns its place, and the most critical instruction ('Call this first') appears prominently.
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 no-parameter read-only discovery tool, the description fully covers what the tool returns, when to use it, and how to interpret the results. Combined with strong annotations and no output schema, no additional context is needed.
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 schema coverage is 100%, so there is no parameter burden for the description to carry. The baseline of 4 applies because no parameter documentation is needed.
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?
Uses a specific verb ('Fetch') plus a clear resource ('Human For AI manifest') and enumerates the exact contents (services, operator profile, response times, task types, policy). This clearly distinguishes it from sibling tools like submit_human_task or message_human_operator, which are action-oriented.
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?
Gives explicit guidance to 'Call this first' before deciding to hire the human, establishing a clear ordering. It also notes unlisted needs are welcome, but it does not explicitly name alternative tools or state when not to use this tool, so it falls just short of full exclusionary guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
message_human_operatorMessage the human operatorAInspect
Send a free-form message to the human operator — questions, scoping, custom or recurring projects, anything that is not yet a ready-made task. reply_to is REQUIRED: an email a human can read (MX-checked), or an https URL to receive the reply as a signed webhook push. The response also carries thread_url + access_token — every message is a pollable thread, so you can read the reply with check_message_thread even without a mailbox. Keep the token: it is shown only once.
| Name | Required | Description | Default |
|---|---|---|---|
| from | No | Your agent or system identifier | |
| message | Yes | The message. Plain language, English. | |
| subject | No | Short subject line | |
| reply_to | Yes | REQUIRED. Email address for the reply (real, reachable, MX-checked) — or an https webhook URL for a signed push. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already flag a non-read-only, non-idempotent, open-world operation, so the description carries the burden of richer context — and it delivers substantially: the MX-checked email/https webhook reply mechanism, the pollable-thread model (thread_url + access_token), and the security-critical disclosure that the token 'is shown only once.' This is exactly the kind of behavioral and operational context annotations cannot convey.
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?
Three dense sentences, each earning its place: purpose and scope first, then the reply_to requirement with its two delivery mechanisms, then the thread/token return behavior with the one-time-display warning. No padding, no filler, and the most operationally critical detail (token shown only once) is placed in the final sentence without being buried.
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 carries the burden of explaining return values — and it does: the response carries thread_url + access_token, every message is a pollable thread, and check_message_thread is named as the follow-up path even without a mailbox. For a flat 4-parameter message-sending tool, nothing an agent needs to call it correctly and retrieve the reply 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?
Schema coverage is 100%, so the baseline is 3. The description adds genuine meaning beyond the schema by specifying what belongs in message (questions, scoping, custom/recurring projects) and by explaining why reply_to is the delivery path for the reply. It does repeat some reply_to details that the schema already covers nearly verbatim, but the message-content guidance is a real addition above baseline.
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?
States a specific verb+resource pair ('Send a free-form message to the human operator') and immediately scopes it with 'anything that is not yet a ready-made task,' which cleanly separates it from siblings like submit_human_task. The free-form versus ready-made distinction is precise and actionable, so an agent knows exactly what this tool is for without opening other schemas.
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 context ('questions, scoping, custom or recurring projects') and names check_message_thread as the companion tool for reading replies. However, the primary alternative for ready-made tasks (submit_human_task) is never named; the exclusion is implied by 'not yet a ready-made task' rather than stated as an explicit when-not-to-use rule, which keeps it just shy of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reply_in_message_threadFollow up in a message threadAInspect
Add a follow-up to a thread you opened — answer a question the operator asked, add detail, correct yourself, or withdraw the request. Prefer this over sending a brand-new message about the same subject. Needs the message_id and access_token from the submission response.
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | The follow-up text | |
| message_id | Yes | The message id from message_human_operator | |
| access_token | Yes | The access_token returned once at submission |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate a non-read-only, non-idempotent, non-destructive write operation. The description adds context beyond annotations by specifying the provenance of required credentials (submission response) and the range of intended follow-up actions, including withdrawing a request. This is useful behavioral context, though it doesn't detail side effects or response 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 three sentences long, front-loads the core action, and wastes no words. Every sentence earns its place: what it does, when to prefer it, and what inputs are needed. Excellent structure for an AI agent.
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 3-parameter write tool with full schema coverage and a clear purpose, the description is nearly complete. It covers the key prerequisites and the primary decision rule. It doesn't mention return values or error cases, but the absence of an output schema and the simplicity of the operation keep this gap minor. A 4 is appropriate.
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%, so each parameter is already documented in the schema. The description adds modest context by explaining that message_id and access_token come from the submission response, but the schema's parameter descriptions already convey this. With full schema coverage, 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 states a specific action ('Add a follow-up to a thread you opened') on a clear resource, and enumerates concrete purposes (answer, add detail, correct, withdraw). It also differentiates from sending a brand-new message, which maps to the sibling message_human_operator. This is a precise and unambiguous purpose statement.
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 says to prefer this tool over sending a brand-new message about the same subject, giving an alternative condition and a clear routing rule. It also states the required inputs (message_id and access_token from the submission response), which tells the agent when the tool is usable. This is strong usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_human_taskSubmit a task to the humanAInspect
Submit a task for the human operator to perform in the real world. Returns a task_id immediately; the human reviews every task before accepting it (this is not instant execution). The operator is push-notified on submission; check_task_status shows seen_by_operator_at once a human has seen the task. Free during the pilot. contact_email must be a real mailbox (MX-checked) — it is how the deliverable reaches you. No mailbox? Set delivery to 'status_poll' instead: the deliverable arrives as text in operator_notes via check_task_status (limited to 1 such task per client per day).
| Name | Required | Description | Default |
|---|---|---|---|
| deadline | No | ISO 8601 datetime, e.g. 2026-07-10T12:00:00+03:00 | |
| delivery | No | How the deliverable reaches you. 'email' (default) needs contact_email. 'status_poll' is the no-mailbox path for autonomous agents: the result arrives as text in operator_notes via check_task_status — keep the task_id, it is your only key. Budget: 1 status_poll task per client per day. | |
| requester | No | Your agent or system identifier, e.g. my-agent/1.0 | |
| task_type | Yes | Service category — see get_human_services for descriptions. The list is not exhaustive: use custom_human_in_the_loop for anything that fits no other category | |
| description | Yes | What to do, where, and what success looks like. Specific, self-contained tasks are accepted faster. | |
| contact_email | No | Where the deliverable and clarifying questions are sent. Required unless delivery is 'status_poll'. Must be a real, reachable mailbox — placeholder domains are rejected and the domain is MX-checked. | |
| output_format | No | text_report (default), text_report_with_photos, structured_json, annotated_screenshots, or video | |
| location_detail | No | City, address, or area — required in practice when location_required is true | |
| location_required | No | true if the task needs physical presence (coverage is confirmed at review) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations give only basic hints (not read-only, not idempotent, not destructive). The description adds substantial behavioral context: the human review means execution is not instant, the operator is push-notified on submission, contact_email is MX-checked and placeholder domains are rejected, and status_poll delivers results via operator_notes with a one-per-client-per-day limit. This exceeds the annotation burden meaningfully.
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 compact yet dense with useful information. It front-loads the most important behavioral caveat (not instant execution) and then flows naturally through tracking, pricing, and delivery options. Every sentence earns its place; there is no redundancy or filler.
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 9-parameter tool with no output schema, the description is remarkably complete. It covers the submission lifecycle, the asynchronous review model, how the deliverable reaches the agent, fallback behavior for mailbox-less agents, and the rate limit. An agent has enough context to call the tool correctly and set expectations about the async result.
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 covers all 9 parameters (100% coverage), but the description adds crucial semantic detail beyond the schema: it clarifies the relationship between delivery and contact_email (no mailbox means use status_poll), explains that a task_id is the only key for tracking the deliverable, and notes that location_detail is 'required in practice' when location_required is true. This is valuable guidance the schema alone does not provide.
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 ('submit') and resource ('a task for the human operator to perform in the real world'). It immediately differentiates from the sibling status-check tools by noting it returns a task_id immediately while the human reviews before accepting. This clearly distinguishes the submission action from check_task_status and other sibling 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?
The description explicitly tells the agent when to use this tool (submit a real-world task) and when to use the alternative (check_task_status to track progress). It also routes the agent to get_human_services for task_type category descriptions, and explains the delivery-mode alternatives for agents with or without a mailbox, including the status_poll budget constraint.
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. Dates show when Glama detected each change.
3 tool updates
- Added
check_message_thread - Changed
message_human_operator1 field changed- changed
Input schema / properties / reply_to / descriptionPrevious value: -"REQUIRED. Email address for the reply — must be a real, reachable mailbox (MX-checked)."New value: +"REQUIRED. Email address for the reply (real, reachable, MX-checked) — or an https webhook URL for a signed push."
- Added
reply_in_message_thread
1 tool update
- Changed
submit_human_task1 field changed- changed
Input schema / properties / task_type / enumPrevious value: -[ - "real_world_verification", - "product_or_app_testing", - "human_judgment_and_feedback", - "data_collection", - "local_physical_task", - "ai_output_review", - "prompt_and_workflow_testing", - "simulation_and_automation_testing", - "accessibility_and_usability_check", - "custom_human_in_the_loop" -]New value: +[ + "real_world_verification", + "product_or_app_testing", + "human_judgment_and_feedback", + "data_collection", + "local_physical_task", + "ai_output_review", + "prompt_and_workflow_testing", + "simulation_and_automation_testing", + "accessibility_and_usability_check", + "decision_escalation", + "custom_human_in_the_loop" +]
1 tool update
- Changed
check_task_status1 field changed- changed
Input schema / properties / task_id / descriptionPrevious value: -"Task ID returned by submit_human_task, e.g. HFAI-2026-A1B2C3D4"New value: +"Task ID returned by submit_human_task, e.g. HFAI-2026-A1B2C3D4E5F60718"
1 tool update
- Changed
submit_human_task3 fields changed- changed
Input schema / properties / contact_email / descriptionPrevious value: -"REQUIRED. Where the deliverable and clarifying questions are sent. Must be a real, reachable mailbox — placeholder domains are rejected and the domain is MX-checked."New value: +"Where the deliverable and clarifying questions are sent. Required unless delivery is 'status_poll'. Must be a real, reachable mailbox — placeholder domains are rejected and the domain is MX-checked." - added
Input schema / properties / deliveryAdded value: +{ + "description": "How the deliverable reaches you. 'email' (default) needs contact_email. 'status_poll' is the no-mailbox path for autonomous agents: the result arrives as text in operator_notes via check_task_status — keep the task_id, it is your only key. Budget: 1 status_poll task per client per day.", + "enum": [ + "email", + "status_poll" + ], + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "task_type", - "description", - "contact_email" -]New value: +[ + "task_type", + "description" +]
2 tool updates
- Changed
message_human_operator2 fields changed- changed
Input schema / properties / reply_to / descriptionPrevious value: -"Email address for the reply — strongly recommended"New value: +"REQUIRED. Email address for the reply — must be a real, reachable mailbox (MX-checked)." - changed
Input schema / requiredPrevious value: -[ - "message" -]New value: +[ + "message", + "reply_to" +]
- Changed
submit_human_task2 fields changed- changed
Input schema / properties / contact_email / descriptionPrevious value: -"Where the deliverable and clarifying questions are sent. Strongly recommended."New value: +"REQUIRED. Where the deliverable and clarifying questions are sent. Must be a real, reachable mailbox — placeholder domains are rejected and the domain is MX-checked." - changed
Input schema / requiredPrevious value: -[ - "task_type", - "description" -]New value: +[ + "task_type", + "description", + "contact_email" +]
1 tool update
- Changed
submit_human_task1 field changed- changed
Input schema / properties / task_type / descriptionPrevious value: -"Service category — see get_human_services for descriptions"New value: +"Service category — see get_human_services for descriptions. The list is not exhaustive: use custom_human_in_the_loop for anything that fits no other category"
4 tool updates
- First observed
check_task_status - First observed
get_human_services - First observed
message_human_operator - First observed
submit_human_task
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Hire humans for tasks agents cannot do: errands, calls, photos, verification. Escrowed, verified.
Pay people nearby for physical work: find out if something is true, or have it done.
81Human-as-a-Service for AI agents. Delegate tasks that need a real human, get results via API.
Let your AI agent hire a human for tasks it can't do — first post free.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceDelegates real-world digital tasks to vetted humans directly from AI chat. Provides tools to get quotes, post tasks, and check status with escrow protection.25MIT
- AlicenseAqualityCmaintenanceEnables AI agents to dispatch human verifiers for physical world tasks like product authentication, property inspection, and document verification, returning timestamped evidence reports.347MIT
- AlicenseAqualityFmaintenanceEnables AI agents to search for and hire humans for real-world tasks.33627MIT
- AlicenseAqualityCmaintenanceHuman Menu is a marketplace where AI clients post tasks for human workers.1019MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct resource and action: discovery, structured task submission/status, free-form messaging, and threaded replies. Potential overlaps like submit vs. message vs. reply are clearly separated by input requirements and response types.
All names are snake_case and action-first, which makes them predictable as a set. The only minor deviation is 'reply_in_message_thread' including a preposition, but it remains clear and consistent in style.
Six tools is well-scoped for the service: one discovery tool, two task lifecycle tools, and three messaging/thread tools. There is no redundant surface area.
The core lifecycle is covered: discover, submit, poll, receive verification, and exchange follow-up messages. The main gap is the lack of an explicit cancel or amend task operation, though agents can work around it by messaging the operator.