MiniURL
Server Details
Create, manage, organize, and analyze short links with MiniURL's remote MCP server.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.6/5 across 21 of 21 tools scored. Lowest: 2.8/5.
Each tool has a clearly distinct purpose. Authentication, link creation, tag management, and account operations are all separate, with no overlapping functionality. Even similar tools like shorten_url and bulk_create_links are differentiated by batch processing.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_tag, delete_link, list_domains). This makes it easy for an agent to predict tool names and understand their actions.
21 tools cover the full feature set of a URL shortener (auth, CRUD, tags, domains, stats). While slightly above the typical 3-15 range, each tool serves a necessary function without redundancy.
The tool surface provides full lifecycle management for links and tags, plus complete authentication flow from guest to registered account. Missing features like link expiration are not critical for core functionality.
Available Tools
21 toolsauthenticate_tokenAInspect
Store an existing MiniURL token in the current MCP session. Accepts either a gt_ guest token or an mk_ API key.
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | A valid MiniURL guest token (gt_) or API key (mk_). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose all behavioral traits. It only states that the token is stored in a session, but omits details such as whether the token overwrites existing credentials, the effect on subsequent API calls, failure responses, or persistence across sessions.
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 extremely concise with two short sentences, both front-loaded with key information. Every word adds value, no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (one parameter, no output schema, no annotations), the description covers the basic purpose and accepted tokens. However, it lacks usage context (e.g., when to call, success indicators) and behavior details, making it minimally 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?
Schema coverage is 100% as the single parameter is described. The description adds the context of 'existing token' and session storage, which supplements the schema's type description. However, it does not provide significant additional meaning beyond what the schema already conveys.
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 action ('store') and the resource ('existing MiniURL token') with context ('in the current MCP session'). It specifies accepted token formats (gt_ or mk_), making the purpose unambiguous and distinguishing it from siblings like clear_authentication.
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 for authentication but does not explicitly state when to use this tool versus alternatives like create_guest_token or clear_authentication. No prerequisites or exclusions are mentioned, leaving the agent to infer context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bulk_create_linksBInspect
Create multiple short links in one request. Free accounts can create up to 10 at a time, Pro up to 50.
| Name | Required | Description | Default |
|---|---|---|---|
| links | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only discloses account limits, but omits critical behavioral details such as idempotency, validation of aliases, password handling, or response structure. This is insufficient for a complex bulk creation tool.
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 clearly states the core action, and the second adds critical limit info. Front-loaded and efficient.
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 has a complex input schema with nested objects and no output schema. The description only covers account limits, missing parameter semantics, behavioral details, and return value information. This is inadequate for correct agent invocation.
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 has no descriptions for any fields, and the description fails to explain the purpose or constraints of the 'links' array or its nested properties (url, alias, domain, password, etc.). This leaves the agent guessing about parameter usage.
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: creating multiple short links in one request. It distinguishes from siblings like 'shorten_url' which handles single links.
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 account-specific limits (free: 10, Pro: 50), which helps with usage context. However, it does not explicitly state when to use this tool over alternatives or mention any prerequisites or 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.
check_aliasARead-onlyInspect
Check whether a custom alias is available on a given domain before creating a link.
| Name | Required | Description | Default |
|---|---|---|---|
| alias | Yes | The alias to check. | |
| domain | No | The domain to check on. Defaults to miniurl.com. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description aligns with the readOnlyHint annotation, indicating a safe read operation. It adds useful context about checking availability before link creation, but does not reveal additional behavioral traits like what 'available' means in terms of response (e.g., boolean) or any limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence that is front-loaded and contains no unnecessary words. Every word adds value.
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 has no output schema, yet the description does not mention what the tool returns (e.g., a boolean indicating availability). It lacks this crucial piece of information for the agent to use the result 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%, so the schema already explains both parameters. The description adds no extra meaning beyond what is in the schema; it only repeats the context of checking availability on a domain.
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 action ('Check whether a custom alias is available'), the resource ('on a given domain'), and the context ('before creating a link'). It is specific and distinguishes this tool from sibling tools that create or manage links.
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 when to use the tool: before creating a link. It implicitly guides the agent to use this tool to verify alias availability. However, it does not provide explicit when-not-to-use or alternatives, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
clear_authenticationAInspect
Clear any stored MiniURL authentication from the current MCP session.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries the full burden. It states it clears authentication but does not disclose any side effects, reversibility, or scope (e.g., session vs. persistent storage). For a straightforward action, this is adequate but not detailed.
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?
One sentence with no wasted words. The core purpose is front-loaded and instantly understandable.
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 (no params, no output schema), the description is sufficiently complete. It could elaborate on what 'stored authentication' entails, but it adequately informs the agent.
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% with zero parameters, so baseline is 4. The description adds no parameter details, but none are 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?
The description uses a specific verb ('Clear') and resource ('any stored MiniURL authentication'), clearly stating the tool's action. It distinguishes itself from sibling tools like authenticate_token.
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?
No explicit when-to-use or when-not-to-use guidance is provided. With zero parameters and a clear action, usage is implied but could be improved by mentioning typical scenarios like session logout.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_guest_tokenAInspect
Create a MiniURL guest token and store it in an unauthenticated MCP session. If auth is already set, keep it or call clear_authentication first. shorten_url can provision a guest automatically.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description properly discloses creation and storage behavior and auth state considerations. However, lacks details on idempotency or side effects like overwriting existing tokens, but adequate for a simple tool.
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 efficient sentences that front-load key information with 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?
Covers core functionality, auth state interaction, and alternative tool usage. Adequate given zero parameters and no output schema.
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?
Input schema has no properties (100% coverage), so no parameter details are needed. Baseline 4 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 clearly states the verb 'Create' and resource 'MiniURL guest token', specifies storage in an unauthenticated MCP session, and distinguishes from siblings like 'authenticate_token' and 'shorten_url'.
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 precondition guidance: if auth is set, keep it or call clear_authentication first. Also notes that shorten_url can provision a guest automatically, offering an alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_tagAInspect
Create a new tag for organising links. Maximum 20 tags per account.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Tag name, 1-30 characters. | |
| color | No | Tag colour hex code. Defaults to #6b7280 (grey). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description must carry the full burden. It discloses the mutation and the account limit, but lacks information on what happens if a tag with the same name already exists (error vs. update), or required authentication.
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 redundancy. The first sentence clearly states the purpose, and the second adds a key constraint. Every word 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?
Adequate for a simple creation tool with two parameters. Missing details on error handling (e.g., duplicate names), authentication requirements, and return value (no output schema). Could be more 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?
Input schema covers both parameters with descriptions. The tool description adds value by stating the account-level constraint (max 20 tags), which is not in the schema. This extra context justifies a score 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?
Describes a specific verb (create) and resource (tag) with a clear purpose (for organising links). Distinguishes well from siblings like delete_tag and list_tags.
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?
Mentions the account limit (max 20 tags), giving some context, but does not explicitly state when to use this tool versus alternatives like tag_link or update_link. Implied usage only.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_linkADestructiveInspect
Delete a registered short link permanently.
| Name | Required | Description | Default |
|---|---|---|---|
| alias | Yes | The alias to delete. | |
| domain | No | The link domain. Defaults to miniurl.com. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Description adds 'permanently' beyond the destructiveHint annotation, but fails to disclose consequences like data loss of associated stats or tags.
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?
Single sentence with no redundancy; every word delivers essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Adequate for a simple destructive operation, but lacks details on irreversibility or side effects on related entities, given no output schema.
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 provides full parameter coverage (100%), so baseline is 3. Description adds no additional meaning beyond what parameters 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?
Description clearly states verb 'delete', resource 'registered short link', and modifier 'permanently', distinguishing it from sibling operations like update_link or shorten_url.
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?
No guidance on when to use this tool versus alternatives (e.g., updates or deactivation). Lacks context for prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_tagADestructiveInspect
Delete a tag and remove it from all associated links.
| Name | Required | Description | Default |
|---|---|---|---|
| tag_id | Yes | The tag ID to delete. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark as destructive. Description adds the key side effect of removal from all associated links, providing value beyond 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?
Single sentence, front-loaded with action and consequence, no wasted 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?
For a simple tool with one required param and no output schema, the description fully covers purpose and side effects.
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 the description adds no additional meaning for the single 'tag_id' parameter beyond the schema's own description.
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 it deletes a tag and removes it from associated links, distinguishing it from siblings like 'create_tag' and 'untag_link'.
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?
No explicit guidance on when to use this tool versus alternatives like 'untag_link'. The description implies use for full deletion but lacks when-not or sibling differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_account_statusARead-onlyInspect
Inspect the current guest/free/pro account status, remaining quota, and feature availability.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the description adds value by listing specific return elements (status, quota, feature availability) without contradicting annotations. This context is helpful for understanding the tool's behavioral scope.
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?
Single, well-structured sentence with no filler. Every part is informative and 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?
Given zero parameters and no output schema, the description adequately lists the three key return categories (status, quota, features). While an explicit mention of the return type (object) would strengthen completeness, the description is sufficient for a simple inspection 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?
Tool has 0 parameters with 100% schema coverage, so baseline is 4. No parameter information needed, and description does not attempt to add irrelevant detail.
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 uses specific verb 'Inspect' and clearly defines resource 'account status' including details like guest/free/pro, quota, features. It distinguishes from sibling tools that focus on authentication or specific checks (e.g., authenticate_token, check_alias).
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 for checking account status but provides no explicit guidance on when to use this tool versus alternatives, nor any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_linkARead-onlyInspect
Get a single short link by alias for the current registered account.
| Name | Required | Description | Default |
|---|---|---|---|
| alias | Yes | The link alias to fetch. | |
| domain | No | The link domain. Defaults to miniurl.com. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, so the description correctly aligns. It adds context that the tool operates on the current registered account, implying authentication. No additional behavioral traits (e.g., rate limits) are disclosed, but the key aspect of safety is covered by 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 a single, concise sentence that front-loads the verb and resource. No unnecessary words, earning its place efficiently.
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?
While the description states the tool gets a single link, it does not hint at the return format or what properties are included. Given no output schema, this omission slightly reduces completeness. However, for a simple retrieval tool, it is minimally adequate.
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 describes both parameters with 100% coverage. The description only adds 'by alias', which matches the required param. It does not add new meaning beyond what the schema provides, so baseline 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?
The description clearly identifies the verb 'Get', the resource 'single short link', the identifier 'alias', and the scope 'current registered account'. It effectively distinguishes from sibling tools like list_links and shorten_url.
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 when a specific alias is known, but does not explicitly state when to use this tool versus alternatives like list_links or check_alias. No exclusion criteria or when-not advice is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_link_statsARead-onlyInspect
Get link analytics. Free accounts receive a basic total plus an upgrade hint; Pro accounts receive full breakdowns.
| Name | Required | Description | Default |
|---|---|---|---|
| alias | Yes | The alias to inspect. | |
| domain | No | Optional domain to scope the alias lookup. Defaults to miniurl.com. | |
| period | No | Analytics time range. Defaults to 7D. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, so the safe read behavior is already clear. The description adds useful context about free vs Pro account behavior, going beyond annotations without contradiction.
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 concise sentences that provide key information without redundancy. No wasted 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?
For a read-only tool with no output schema, the description should detail what the analytics contain (e.g., clicks, referrers). It only mentions 'basic total' and 'full breakdowns', leaving the output structure ambiguous.
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 parameters are fully documented in the schema. The description adds no extra meaning beyond 'analytics' context, which is already implied by the tool name.
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 'Get link analytics' as the verb and resource. It distinguishes from sibling tools like get_link and list_links by focusing on analytics. The account tier nuance adds precision.
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?
No explicit guidance on when to use versus alternatives. The account tier information implies that Pro accounts get more data, but does not state when to choose this over other tools or what conditions to consider.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_domainsARead-onlyInspect
List domains available to the current registered account, including miniurl.com and active custom domains.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, so description adds minor context about included domain types. No contradictions, but no further behavioral disclosure (e.g., auth requirements, response format).
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?
Single sentence with no extraneous information. Every word is functional and necessary.
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 list with no parameters and no output schema, the description provides sufficient context about what is returned. Could mention if pagination exists, but unlikely given no params.
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?
No parameters exist (schema coverage 100%), so description need not explain params. It adds value by specifying the scope of listed domains, which is helpful for the agent.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'List' and resource 'domains', with specific scope 'available to the current registered account' and examples 'miniurl.com and active custom domains'. No similarly named sibling tools, so differentiation is clear.
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?
No explicit guidance on when to use this tool versus alternatives like list_links or list_tags. Usage is implied by the tool's purpose, but no when-not-to-use or context hints are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_linksBRead-onlyInspect
List short links for the current registered account.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Optional page size. Defaults to 20. | |
| domain | No | Optional domain filter. | |
| offset | No | Optional zero-based offset for pagination. Defaults to 0. | |
| search | No | Optional search term for alias or destination URL. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true, so the safety profile is covered. However, the description adds no additional behavioral context such as pagination behavior, rate limits, or what happens with the offset parameter. It adds no value beyond the annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of 7 words, very concise. While it could have included more details (e.g., pagination hints), it earns its place without waste, making it efficient.
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 simple nature of a list tool and the presence of full schema descriptions and annotations, the description is adequate but incomplete. It does not mention the return format or that it supports pagination via offset/limit, which are documented in the schema but not explained in context.
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% with each parameter having a description. The tool description does not add any extra semantic information beyond the schema, so baseline 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 clearly states the verb 'List' and the resource 'short links', with scope 'for the current registered account'. This distinguishes it from sibling tools like shorten_url (create) and get_link (single link).
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 when you want to list your own links, but it does not provide explicit guidance on when to use this tool versus alternatives like get_link for a specific link, or how to leverage parameters like domain and search for filtering.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tagsARead-onlyInspect
List all tags for the current registered account. Tags help organise links into campaigns or categories.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, indicating a safe read operation. The description adds that it lists tags for the current account, which is consistent but adds limited behavioral context beyond the annotation.
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 succinct sentences with no wasted words. The description is front-loaded with the core purpose and provides a brief context on tags.
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 list operation with no parameters and a readOnlyHint annotation, the description fully covers the necessary details. No output schema exists, but the description does not need to explain return values for such a straightforward 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?
No parameters are defined, and the description does not need to explain them. With zero parameters, the baseline is 4; the description adds no parameter info, which is acceptable.
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 verb 'List' and resource 'tags for the current registered account', distinguishing it from sibling tools like create_tag, delete_tag, tag_link, and untag_link.
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?
No guidance on when to use this tool versus alternatives such as list_links or create_tag. The description does not include when-not-to-use hints or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_registration_codeAInspect
Send a 6-digit registration code to the user email, using the current guest session.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The user email address. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that a 6-digit code is sent to the email and that it uses the guest session, but does not mention side effects (e.g., session state changes, rate limiting, code expiration, error conditions for invalid email).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no redundant information. It is appropriately sized for a simple tool, though could be slightly more concise by omitting 'the user' before 'email'.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core action and context, but given no output schema, it omits information about return values (e.g., success/error) or prerequisites like a valid guest token. It is adequate but not comprehensive for a tool with no output schema and no annotations.
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% for the single parameter 'email'. The description adds meaning beyond the schema by specifying the code format '6-digit', the action 'registration code', and the session context 'current guest session', which aids in understanding the tool's operation.
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 verb 'Send', the resource '6-digit registration code', and the target 'user email', and specifies the context 'current guest session'. This distinguishes it from sibling tools like 'verify_registration_code' which handles code verification.
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 when there is a guest session, but lacks explicit guidance on when to use this tool versus alternatives, prerequisites, or exclusions. No mention of when not to use it or how it fits with sibling tools like 'authenticate_token'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
shorten_urlBInspect
Create a short URL. If no authentication is set, MiniURL automatically starts a guest session for this MCP connection.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The HTTP or HTTPS destination URL to shorten. | |
| alias | No | Optional custom alias. Requires a registered account; miniurl.com aliases must be at least 4 characters. | |
| domain | No | Optional domain. Requires a registered account with an active custom domain. | |
| password | No | Optional password. Requires Pro. | |
| expiration | No | Optional ISO 8601 expiration datetime. Requires Pro. | |
| activated_at | No | Optional ISO 8601 activation datetime. Requires Pro. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds the behavioral detail that a guest session is started if no authentication is set, which is beyond the annotation (destructiveHint=false). However, it does not disclose other behaviors like rate limits or what happens if authentication is set.
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?
Extremely concise: two sentences that cover purpose and a key behavioral note. No filler, front-loaded with the primary 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 6 parameters, no output schema, and many sibling tools, the description is too sparse. It does not mention return values (e.g., shortened URL) or when to use authenticated vs guest mode, leaving gaps.
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?
With 100% schema description coverage for all 6 parameters, the description adds no extra meaning beyond the schema. Baseline 3 is appropriate as the schema already documents parameter semantics.
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 'Create a short URL' clearly indicating the action and resource. It is specific and helps differentiate from sibling tools like 'bulk_create_links', though it does not elaborate on the output.
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?
No explicit guidance on when to use this tool versus alternatives such as 'authenticate_token' or 'create_guest_token'. The only contextual note is about automatic guest sessions, which is helpful but insufficient for choosing among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_pro_upgradeAInspect
Create a shortened checkout link for upgrading the current registered account to Pro.
| Name | Required | Description | Default |
|---|---|---|---|
| interval | No | Billing interval. Defaults to monthly. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided; only states it creates a link. Lacks details on side effects, link lifetime, required auth state, or failure conditions.
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?
Single sentence with no extraneous information; front-loaded and efficient.
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?
Simple tool but missing context on return format, prerequisites, and behavioral constraints. Adequate for basic understanding but leaves gaps.
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 covers 100% of parameters with descriptions; description adds no extra meaning beyond what schema already provides.
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 verb 'Create' and resource 'shortened checkout link' for upgrading to Pro. No sibling tool overlaps, so it effectively distinguishes the tool's purpose.
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?
Implies usage for upgrading, but no explicit guidance on prerequisites or when not to use (e.g., if already Pro). No alternatives mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tag_linkBInspect
Add a tag to a short link for campaign or category organisation.
| Name | Required | Description | Default |
|---|---|---|---|
| alias | Yes | The link alias to tag. | |
| domain | No | The link domain. Defaults to miniurl.com. | |
| tag_id | Yes | The tag ID to assign. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It only states 'Add a tag' implying a mutation, but does not disclose whether the operation is idempotent, if it overwrites existing tags, what errors may occur, or any authentication requirements. This is insufficient for safe invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no superfluous words. It conveys the essential purpose efficiently.
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 and lack of output schema, the description should at least mention typical outcomes or return values. It does not describe what happens on success or failure, leaving the agent with incomplete context.
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 each parameter's meaning. The tool description adds no additional context beyond what the schema provides. Baseline 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 clearly states the action 'Add a tag to a short link' and the purpose 'for campaign or category organisation.' It is a specific verb+resource combination and distinguishes itself from sibling tools like 'untag_link' (removes tag) and 'create_tag' (creates a new tag).
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?
No guidance is provided on when to use this tool vs alternatives. It does not mention prerequisites (e.g., the tag must already exist) or when to use 'tag_link' versus 'untag_link' or 'create_tag'. The description lacks usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
untag_linkCInspect
Remove a tag from a short link.
| Name | Required | Description | Default |
|---|---|---|---|
| alias | Yes | The link alias. | |
| domain | No | The link domain. Defaults to miniurl.com. | |
| tag_id | Yes | The tag ID to remove. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description adds no behavioral context beyond the name. It does not disclose auth requirements, side effects (e.g., is the link updated? Is the tag deleted from system if no links remain?), or error cases. The description is a tautology of the tool name.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, which is concise, but it is under-specified. It is not verbose, but it sacrifices completeness for brevity.
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?
No output schema means the description should explain return value or confirmation. It does not. Also missing prerequisites like authentication or existence of the tag-link association. Incomplete for a mutation 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 description coverage is 100%, so baseline is 3. The description itself adds no extra meaning beyond what the schema already provides for each parameter (alias, domain, tag_id).
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 action 'Remove a tag from a short link.' It specifies a specific verb (Remove) and resource (tag from a link), distinguishing it from sibling 'tag_link' which adds a tag.
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?
No guidance on when to use this tool versus alternatives like 'tag_link'. The description does not mention prerequisites or conditions for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_linkCInspect
Update a registered short link. Some fields require Pro.
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | New HTTP or HTTPS destination URL. Requires Pro. | |
| alias | Yes | The link alias to update. | |
| domain | No | The link domain. Defaults to miniurl.com. | |
| password | No | Set or replace the password. Requires Pro. | |
| expiration | No | Set a new ISO 8601 expiration datetime. Requires Pro. | |
| activated_at | No | Set a new ISO 8601 activation datetime. Requires Pro. | |
| clear_password | No | Remove the current password. | |
| clear_expiration | No | Clear the current expiration. | |
| clear_activated_at | No | Clear the current scheduled activation datetime. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It mentions 'some fields require Pro' but does not disclose what happens if Pro is missing (e.g., error), nor does it cover any side effects, idempotency, or authorization requirements beyond the Pro note.
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 at one sentence with no filler. However, it could include essential usage guidance without becoming verbose. It is well-structured for its length but under-informative.
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 9 parameters, no output schema, and no annotations, the description is incomplete. It lacks return value information, error handling, prerequisites (e.g., authentication), and behavioral details beyond the Pro flag. A more comprehensive description is warranted for a mutation 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%, meaning all 9 parameters already have descriptions in the input schema. The tool description adds only the 'Requires Pro' context, which is already present in several parameter descriptions. Therefore, the description provides minimal additional semantic 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 updates a registered short link and mentions the Pro requirement for some fields. However, it does not explicitly differentiate from siblings like 'shorten_url' or 'bulk_create_links', but the verb 'update' vs 'create' provides implicit distinction.
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?
No guidance is provided on when to use this tool versus alternatives. With 21 sibling tools, the description fails to specify context or prerequisites for updating a link, such as requiring an existing alias or authentication.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_registration_codeBInspect
Verify the emailed code, create the account, claim guest links, and replace the current guest auth with the new mk_ API key.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | The 6-digit verification code. | |
| Yes | The user email address. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the tool performs write operations (create account, replace auth), which is good. But it does not mention failure behaviors, idempotency, or authorization requirements. Acceptable but not thorough.
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?
Single sentence that conveys all key actions. Could be slightly restructured for readability, but it is efficient and front-loaded. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the multi-step nature and no output schema, the description provides a basic understanding of what the tool does but lacks details on synchronous vs asynchronous behavior, return values, error handling, and post-conditions. Adequate for a simple tool but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for both 'code' (6-digit string) and 'email' (email format). The tool description adds minimal extra meaning beyond 'emailed code'. Baseline score of 3 is appropriate since schema already handles parameter semantics.
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 multiple actions (verify code, create account, claim guest links, replace auth) with specific verb and resource. However, it bundles multiple operations, which slightly reduces focus. Distinct from siblings like send_registration_code and authenticate_token, but could be more explicit.
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?
No guidance on when to use this tool versus alternatives like send_registration_code or authenticate_token. The description implies it is used after receiving the email code, but no explicit when-not or alternative references.
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!