BriefMe
Server Details
Meeting agenda timer for AI assistants: build agendas in chat, share a live synced countdown.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Tool Definition Quality
Average 4.5/5 across 7 of 7 tools scored.
Each tool targets a distinct resource-action pair: agenda creation/reading/title updates versus block add/remove/reorder/update. The descriptions clearly separate update_agenda (title only) from block-level mutations, so an agent can reliably pick the right tool.
All seven tools follow the same snake_case verb_noun convention: create_agenda, get_agenda, update_agenda, add_block, update_block, remove_block, reorder_blocks. The pattern is predictable and consistent across both entities.
Seven tools is well-scoped for a meeting-agenda domain: four block operations, two agenda operations, and one read operation. Every tool earns its place with no redundant or filler entries.
The core agenda and block lifecycle is covered: create, read, update, block add/remove/update, and reordering. The only notable gap is an explicit agenda deletion tool, though the 7-day expiration provides a form of lifecycle cleanup.
Available Tools
7 toolsadd_blockAdd a block to an agendaAInspect
Adds one block to an existing agenda. Appends it to the end, or inserts it directly after after_block_id when you supply one.
Adds only — it does not reorder or change any existing block. Returns the full updated agenda, so you do not need to call get_agenda afterwards.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Short, active, scannable on a countdown screen. | |
| block_type | Yes | Internal classification for analysis — infer it from the content; never mention it to the user. | |
| edit_token | Yes | The edit_token returned by create_agenda. | |
| description | No | Optional one-line note, only when the title is ambiguous. | |
| after_block_id | No | Insert directly after this block id. Omit to append to the end. | |
| duration_seconds | Yes | How long this block runs, in seconds. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It discloses that the operation appends or inserts, does not mutate existing blocks, and returns the full updated agenda. It does not cover failure behavior or invalid after_block_id, but the core side-effect profile is clear.
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 and front-loaded with the primary action. Every sentence adds useful information: placement behavior, the no-reorder guarantee, and the return value. No filler or redundant restatement of the tool name.
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 6-parameter mutation tool with no annotations and no output schema, the description covers the essential operational context: what is added, where it goes, what is not changed, and what is returned. It could mention error cases like an invalid after_block_id, but the parameter schema already documents the inputs thoroughly.
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 the baseline is 3. The description reinforces after_block_id behavior but does not add meaning beyond what the schema already provides for title, block_type, edit_token, description, or duration_seconds.
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 ('Adds one block') and resource ('an existing agenda'), then clarifies the two placement modes: append to the end or insert after after_block_id. It also distinguishes this tool from reorder/update siblings by stating it does not reorder or change existing blocks.
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 clear when-to-use context: adding a new block, with explicit append vs insertion behavior. It also states a when-not boundary ('does not reorder or change any existing block') and tells the agent not to call get_agenda afterwards. However, it does not explicitly name the alternative sibling tools for reordering or updating.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_agendaCreate a meeting agendaAInspect
Creates a timed meeting agenda and returns the links that run it.
Always reply to the user with BOTH links it returns. edit_url is the user's private control page — the only place the meeting can be started, paused, advanced and finished; a user who is not given it cannot run their meeting. It embeds the edit token on purpose: showing it to the user is required, and the one thing to avoid is posting it anywhere shared. The edit page also lets the owner add, change, remove and reorder blocks in the browser. share_url opens the read-only agenda with the live timer — safe to paste into an invite or a channel; attendees open it to follow along. edit_token is what every other BriefMe tool takes; keep it for the rest of the conversation, it is the only way back into this agenda.
Durations: make the block durations add up to the meeting length the user asked for. If they did not give one, infer it — a standup is about 15 minutes, a 1:1 about 30, sprint planning 60 to 90. Most agendas are three to eight blocks. Titles are read off a countdown screen, so keep them to six words or fewer, active and scannable. Add a description only when the title alone is ambiguous. Structure every agenda by the rule below.
Agendas expire after 7 days and cannot be recovered afterwards.
Open every agenda with a short welcome / check-in block ("Welcome & check-in", block_type opening): about 5% of the meeting, 1–10 minutes. End it with a wrap-up block for recap, next steps and good-byes ("Wrap-up & close", block_type closing): about 10% of the meeting, 2–15 minutes. Both count toward the meeting length. Only meetings under 10 minutes skip them.
Breaks ("Break", block_type break): none under 100 minutes; one from 100 minutes, two from 181, three from 271, four from 361, five from 451 — roughly one per 90 minutes of work, never leaving a stretch shorter than 45 minutes on either side. Each break is 10 minutes and comes out of the meeting length. Space them evenly and put each at the nearest block boundary: a 2-hour meeting gets one break at about 55 minutes.
For meetings of 5 hours or more, make the break nearest midday a 30–45-minute meal break if the start time makes that fit.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Short name for the meeting, e.g. "Weekly engineering sync". | |
| blocks | Yes | The agenda blocks, in the order they will run. | |
| language | No | The user's conversation language as a two-letter ISO 639-1 code (e.g. 'de'). Localizes the standard block titles quoted in structure_suggestions. Unsupported values fall back to English. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are empty, so the description carries the full burden, and it delivers substantially: security-critical behavior (edit_url is the only control page and must never be posted shared), output semantics (share_url is read-only and safe for invites), lifecycle behavior (agendas expire after 7 days and cannot be recovered), and disclosure rules (block_type must never be mentioned to the user). This covers side effects, safety, and persistence far beyond what an annotation could express.
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 and dense, but nearly every sentence earns its place given the tool's complexity: security-sensitive outputs, nested block construction rules, and expiry behavior all need coverage. It is front-loaded with the core purpose and critical link-handling instructions before the construction rules. The break-threshold rules are heavy with numbers and could be slightly better organized, but nothing is wasted.
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 and no annotations, the description must explain return values and behavioral safety itself — and it does: edit_url, share_url, and edit_token semantics are each clarified, security constraints are stated, expiry is disclosed, and the full block-construction rules are given. An agent has everything needed to call this tool correctly and handle its outputs appropriately. The only minor omission is behavior when an agenda already exists, which is not critical for a create 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 coverage is 100%, so the baseline is 3, but the description adds meaning well beyond the schema: titles must be six words or fewer and scannable on a countdown screen, block durations must sum to the requested meeting length (with inference rules for standups, 1:1s, sprint planning), and the structure rules specify when to use opening/closing/break block types and their duration proportions. These are operational semantics the schema does not convey.
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 opening sentence 'Creates a timed meeting agenda and returns the links that run it' states a specific verb, resource, and distinctive outcome (the runnable links). This clearly separates it from siblings like add_block, update_block, and get_agenda, which operate on an existing agenda rather than creating a new one.
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 extensive context on how the tool should be used — duration aggregation rules, break thresholds, opening/closing block structure, and title constraints — which is effectively guidance for constructing the blocks parameter. The creation semantics are clear enough that an agent can infer this is the 'first creation' tool versus sibling mutators, but it never explicitly names alternatives or states when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_agendaRead a meeting agendaARead-onlyInspect
Reads back the current state of an agenda, including the id of every block.
Use this when you need block ids you do not already have — for example at the start of a new conversation where the user has pasted an edit token. After any BriefMe mutation you already hold current state, so you do not need to call this again.
Requires edit_token — a share link or share URL cannot be used here. If the user has only the share link, this agenda cannot be read or edited through this tool; tell them that and offer to create a new one instead.
| Name | Required | Description | Default |
|---|---|---|---|
| edit_token | Yes | The edit_token returned by create_agenda. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses a key authentication constraint: 'Requires edit_token — a share link or share URL cannot be used here.' It also describes the return content ('including the id of every block') and explains the state semantics around mutations. This goes well beyond the annotation and gives the agent actionable behavioral context.
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, front-loaded with the core purpose, and organized into three clear paragraphs: function, usage, and constraints. Every sentence earns its place; there is no filler or repetition.
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 read tool with readOnlyHint and no output schema, this description covers all necessary ground: what it does, when to use it, when to avoid it, token requirements, and the alternative when requirements are not met. An agent has enough information to invoke it correctly and handle user edge cases.
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 already fully documents edit_token as 'The edit_token returned by create_agenda.' The description adds significant semantic detail by clarifying that share links are not acceptable and specifying the appropriate user response. While baseline for 100% schema coverage is 3, the extra token-type distinction justifies a 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 opens with a specific verb and resource: 'Reads back the current state of an agenda.' It further clarifies that the tool returns 'the id of every block,' distinguishing it from the mutation siblings (add_block, remove_block, etc.). This makes the tool's function unmistakable.
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 states when to use the tool ('Use this when you need block ids you do not already have') and when not to ('After any BriefMe mutation you already hold current state, so you do not need to call this again'). It also provides an alternative path for the share-link case: 'offer to create a new one instead.' This is exemplary usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
remove_blockRemove a blockADestructiveInspect
Removes one block from an agenda. The remaining blocks keep their ids and their order.
An agenda must keep at least one block, so this fails on the last one. Removing a block shortens the meeting — it does not redistribute that time to the other blocks.
Returns the full updated agenda.
| Name | Required | Description | Default |
|---|---|---|---|
| block_id | Yes | The id of the block to remove. | |
| edit_token | Yes | The edit_token returned by create_agenda. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the destructiveHint annotation, the description discloses several behavioral traits: remaining blocks keep ids and order, removal fails on the last block, the meeting shortens without time redistribution, and the updated agenda is returned. This is rich, non-obvious context that helps the agent anticipate side effects.
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 and front-loaded with the primary action, then adds constraints, side effects, and return value in short sentences. Every sentence contributes meaningful information; there is no 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 destructive mutation with two documented parameters and no output schema, the description answers the essential questions: what it does, when it fails, what changes, and what is returned. Nothing critical is missing 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?
The input schema already fully documents both block_id and edit_token with clear descriptions, so the description adds no parameter-level detail. With 100% schema description coverage, the baseline of 3 applies.
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 operation ('Removes one block from an agenda') with a clear resource and scope, distinguishing it from siblings like add_block, reorder_blocks, and update_block. Additional effects (ids/order preserved, failure on final block) further clarify what the tool does.
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 makes the removal context obvious and gives a clear constraint (cannot remove the last block), but it does not explicitly say when to prefer this tool over alternatives or mention any exclusions. Usage guidance is implied rather than stated as a routing rule.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reorder_blocksReorder the blocks of an agendaAInspect
Puts the agenda's blocks into the order you give.
block_ids must contain every current block id exactly once — none missing, none extra, none repeated. This only reorders: it cannot add, remove or edit a block. If you are unsure of the current ids, call get_agenda first.
Returns the full updated agenda.
| Name | Required | Description | Default |
|---|---|---|---|
| block_ids | Yes | Every current block id, exactly once, in the order you want them to run. | |
| edit_token | Yes | The edit_token returned by create_agenda. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With empty annotations, the description carries the full behavioral burden. It clearly states the strict block_ids constraint (every current id exactly once, none missing/extra/repeated), the non-mutating nature of the operation, and the return value ("Returns the full updated agenda"). This gives the agent a complete picture of side effects and requirements.
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 tightly structured: a one-sentence core purpose, a focused paragraph on block_ids constraints and non-mutation, and a final note about get_agenda plus the return value. Every sentence earns its place and the most important information is front-loaded.
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 moderate-complexity tool with no output schema, the description covers all necessary context: what the tool does, exact input requirements, how to obtain current ids, what it cannot do, and what it returns. The edit_token requirement is already documented in the schema, so nothing critical 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 meaningful value beyond the schema by expanding block_ids semantics into explicit constraints: "none missing, none extra, none repeated," reinforcing the schema's "exactly once" wording. It also clarifies that no editing is possible, which supplements the parameter 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 opens with a specific verb and resource: "Puts the agenda's blocks into the order you give." It explicitly differentiates this from sibling tools by stating what it cannot do — "cannot add, remove or edit a block" — making reorder_blocks distinct from add_block, remove_block, and update_block.
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 clear usage context: reorder existing agenda blocks by providing a complete ordered id list. It also provides a precondition — "If you are unsure of the current ids, call get_agenda first" — and implicitly routes add/remove/edit operations to sibling tools through the "only reorders" limitation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_agendaRename a meeting agendaAInspect
Changes the agenda's title. Does not touch any block — use the block tools for those.
Returns the full updated agenda.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | The new meeting title. | |
| edit_token | Yes | The edit_token returned by create_agenda. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses a key behavioral trait (does not affect blocks) and the return value (full updated agenda). It omits auth or failure details, but for a simple rename these are minor.
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 filler. The main action is front-loaded, and the side-effect clarification and return behavior are each given one concise sentence.
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 two-parameter rename tool with no output schema, the description covers purpose, scope, side effects, return value, and how it differs from block tools. Nothing essential 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 description coverage is 100%, so the schema already documents both parameters. The description adds no new parameter-level meaning beyond the schema, landing at the 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?
The description uses a specific verb and resource ('Changes the agenda's title') and explicitly distances itself from block operations, distinguishing it from the sibling block tools. The return-value note also clarifies what the tool accomplishes.
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 says 'Does not touch any block — use the block tools for those,' giving clear exclusions and routing to alternative sibling tools. This tells an agent when not to use this tool, which is strong guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_blockChange one blockAInspect
Changes one block, identified by block_id. Supply only the fields you want to change — anything you leave out keeps its current value exactly.
Changes one block only: it does not reorder, add or remove anything. Do not re-send fields you are not changing, and do not rewrite the whole agenda to make one edit.
If you do not have current block ids, call get_agenda first. Returns the full updated agenda.
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | New title. Omit to leave unchanged. | |
| block_id | Yes | The id of the block to change, from create_agenda or get_agenda. | |
| block_type | No | New internal classification. Omit to leave unchanged; never mention it to the user. | |
| edit_token | Yes | The edit_token returned by create_agenda. | |
| description | No | New note. Send null to clear it. Omit to leave unchanged. | |
| duration_seconds | No | New duration in seconds. Omit to leave unchanged. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With empty annotations, the description carries the full burden and does well: it discloses partial-update behavior ('anything you leave out keeps its current value exactly'), scope limitation, and return behavior ('Returns the full updated agenda'). It does not address failure modes or token staleness, which keeps it just below a perfect score.
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 core behavior and organized into useful short paragraphs: semantics, exclusions, prerequisite, and return value. Some redundancy exists ('Changes one block only' restates the opening, and 'Do not re-send fields' repeats the supply-only-changed-fields idea), but it remains economical.
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 six-parameter mutation tool with no annotations and no output schema, the description provides the essential context: partial updates, single-block scope, prerequisite id retrieval, and the return value. It omits error/validation behavior and does not describe the shape of the returned agenda, but enough is present for an agent to select and invoke the tool 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 coverage is 100%, so the input schema already documents every parameter. The description reinforces the 'omit to leave unchanged' convention that appears in the schema but adds little new parametric meaning beyond the conceptual partial-update model already implied by the property 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 states a specific verb and resource ('Changes one block, identified by block_id') and explicitly narrows scope to a single block. It also differentiates from sibling tools by stating what it does not do: 'does not reorder, add or remove anything.'
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 clear when-to-use guidance: change a single block by supplying only changed fields. It gives explicit when-not-to-use guidance ('do not re-send fields you are not changing', 'do not rewrite the whole agenda') and a concrete prerequisite: 'If you do not have current block ids, call get_agenda first.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
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 or an account that owns the GitHub organization, then choose Claim with GitHub.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
Group meeting scheduler — rank times everyone's free across Google & Outlook, book Meet/Teams.
Agent-first meeting schedule polls for humans and agents. Create polls, vote, find times.
Contio MeetingOS: meetings, transcripts, action items, agendas, calendar, and project management.
AI-native scheduling and booking: check availability, book meetings, share links.
Related MCP Servers
- FlicenseBqualityAmaintenanceProvides live meeting context to an AI assistant during Google Meet or Zoom calls, enabling real-time transcript reading, decision tracking, and actionable advice in a side panel.131
- AlicenseNot gradedqualityDmaintenanceIntegrates TimeCamp time tracking into AI assistants, enabling real-time timer control, time entry management, smart search, and reporting.MIT
- MIT
- FlicenseNot gradedqualityDmaintenanceAutomates meeting logistics with tools for scheduling, availability checking, slot finding, timezone conversion, and recurring date generation. Eliminates the need for custom calendar logic by providing validated time operations and formatted invitations for applications and AI assistants.