mcp-all-inkl
Server Quality Checklist
Latest release: v1.0.6
- Disambiguation5/5
Each tool targets a distinct hosting resource (SSL, cronjob, DNS, domain, subdomain, database, mail, account, system), so there is no ambiguity about which tool to select for a given task. Even related tools like domain and subdomain are clearly separated by resource type.
Naming Consistency5/5All tools follow a consistent 'kas_<resource>' snake_case pattern, and actions within tools use predictable verb_noun conventions (list, create, update, delete). There are no mixed casing styles or vague tool names.
Tool Count5/59 tools is well-scoped for a hosting management server, covering all major resource areas without fragmentation or bloat. Each tool earns its place, and the count falls comfortably within the ideal 3-15 range.
Completeness4/5The server provides full CRUD coverage for most resources (cronjobs, DNS, domains, subdomains, databases, mail) plus account and system monitoring. The only notable gap is that SSL only supports update (no create/list/delete), which may be acceptable depending on the provider's workflow, but is a minor limitation.
Average 3.7/5 across 9 of 9 tools scored. Lowest: 2.9/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It mentions the shared 'pick' and 'filter' behavior, which is useful, but it does not indicate which actions have side effects (e.g., create_session vs get_space) or what security/permissions are needed. This is a notable gap for a tool that mixes a write action with read actions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is brief and front-loaded with a high-level summary before listing actions. The optional params explanation is concise and actionable. It could be better structured with separate sections for each action, but it is efficient and free of filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema and no annotations, so the description should explain what each action returns and how they differ. It fails to distinguish between 'get_space' and 'get_space_usage' or describe the output format of any action. For a multi-action tool with creating and reading capabilities, this is a significant gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds value for 'pick' and 'filter' by explaining their purpose (token reduction, result filtering) and giving a filter example. However, it does not clarify the 'params' object, which is still opaque. Schema coverage is 50%, and the description partially compensates but not completely.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Sessions, disk space, traffic' and lists action names, making the domain clear. It distinguishes from sibling tools (ssl, dns, domain, etc.) by focusing on system-level operations. However, each action is not individually described, so the purpose of actions like 'get_space' vs 'get_space_usage' is only inferred from their names.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is given on when to use this tool versus alternatives. The description does not mention when to choose kas_system over kas_dns or kas_database, nor does it state any prerequisites or exclusions. The only context is the tool name and domain summary, which indirectly imply usage but do not provide clear direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'update' without describing side effects, permissions, reversibility, or response behavior. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and starts with the core purpose. The bullet-like listing of action and params is efficient, though the generic pick/filter note could be considered repetitive with the schema. Overall, it earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, no annotations, and only a bare list of parameters without descriptions, the description is incomplete. It fails to specify what the update does, required inputs beyond the parameter names, or any behavioral context. The tool needs more elaboration 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.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema only shows a generic 'params' object with no inner fields. The description lists the actual parameter names (domain_name, ssl_certificate_sni_crt, etc.), which adds value beyond the schema. However, it does not explain the meaning or format of these parameters, so compensation is partial.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Manage SSL certificates' which is a verb+resource, and further specifies 'Action: update', making it clear this tool handles SSL certificate updates. It distinguishes from sibling tools by its focus on SSL, though 'manage' is somewhat generic.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for updating SSL certificates via the 'action: update' directive, but it does not explicitly state when to use this tool versus alternatives, nor does it provide exclusion criteria. The generic pick/filter note applies to all tools but doesn't help differentiate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It lists action names and parameters but does not explain side effects (e.g., delete is destructive, move changes ownership), permissions, reversibility, or return values. The pick/filter option is helpful but not behavioral.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-structured with a bulleted action list, making it easy to scan. Every sentence/line adds relevant information, and the optional params are explained in one concise sentence without unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 6 actions and no output schema or annotations, the description should provide more context about return values, errors, or prerequisites. The update action is vague, and there is no mention of what each action returns or potential side effects, leaving significant gaps for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description supplements the generic 'params' object in the schema by listing domain-specific parameters for create and move (e.g., domain_tld, domain_path, ssl_proxy, target_kas_login). However, update uses vague ellipsis ('...fields') and no types or constraints are given, leaving some parameters undefined.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Manage domains' and enumerates specific actions (list, list_tlds, create, update, delete, move), identifying the resource and operations. This distinguishes it from sibling tools like kas_ssl, kas_dns, and kas_database that manage other resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is provided on when to use this tool versus sibling tools or how to choose among actions. The description only says 'Manage domains' without discussing prerequisites, alternatives, or exclusions, leaving usage entirely implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the 'in_progress' failure mode for updates after creation and explains the optional pick/filter parameters. However, with no annotations, it does not address the safety/destructive nature of delete, permissions, or return value behavior beyond filtering.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded, using a bulleted action list with inline parameter examples. Every sentence adds operational value with no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is complex (5 actions, nested params) and has no output schema or annotations. The description gives an operational overview but omits return values, required fields for update, and when-to-use guidance. It is sufficient for basic invocation but leaves gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 50% (pick and filter have descriptions), but the description adds concrete examples for create (subdomain_name, domain_name) and move (target_kas_login), and explains pick/filter behavior. The 'params' catch-all remains under-specified, and the update fields token is vague.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Manage subdomains' and enumerates five concrete actions (list, create, update, delete, move), making the tool's purpose specific. This distinguishes it from sibling tools like kas_domain and kas_dns by focusing on the subdomain resource.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is provided on when to use this tool versus alternatives. It does not mention kas_domain or other siblings as alternatives for domain-level operations. The description implies subdomain management but lacks decision rules or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden for behavioral disclosure. It adds useful behavior details: protocol must be 'https' or 'http', http_url is without a protocol prefix, and time values follow crontab syntax. It also explains that 'pick' reduces tokens and 'filter' returns only matching entries. However, it does not mention side effects, auth requirements, rate limits, or what happens on update/delete (e.g., partial vs. full update, error cases). This is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured as a bulleted list, front-loading the purpose ('Manage cronjobs') followed by concise action definitions. Every line adds value—parameter lists, format notes, and optional param behavior—without unnecessary fluff. The use of placeholders like '...fields' keeps it compact while conveying the pattern.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a CRUD tool with no output schema, the description covers the main usage and parameter rules but lacks information about return values or result structures (e.g., does list return an array? what does create return?). It also doesn't address edge cases like cronjob_id validation or error handling. Given the moderate complexity, the description is functional but incomplete for an agent needing to anticipate outputs and failures.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The definition significantly expands on the schema, which only describes 'pick' and 'filter' but leaves 'action' and 'params' as opaque. The description explains the action enum implicitly and details the create params (protocol, http_url, time fields) with constraints such as protocol values and crontab semantics. It doesn't enumerate all update fields, but it adds substantial meaning beyond the schema's minimal coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states 'Manage cronjobs' and enumerates four actions (list, create, update, delete) with distinct params, making the tool's purpose clear. The resource (cronjobs) is distinct from sibling tools like kas_dns or kas_domain, though the verb 'manage' is generic, so it doesn't fully differentiate beyond the resource name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The action breakdown implicitly tells when to use each operation (e.g., 'create' for new cronjobs, 'delete' for removing). It doesn't explicitly mention when not to use this tool or name alternatives, but the context of sibling tools and the focused resource make the usage context clear. There are no explicit exclusions, so it falls just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden and does explain what each action does (e.g., get_resources returns limits and usage, get_server_info returns PHP/MySQL/OS). It also discloses the optional pick/filter behavior. However, it omits important behavioral details like whether delete is irreversible, what happens on conflict, or any permission prerequisites, which is a notable gap for a management tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured with a brief opening, a bullet-style list of actions, and a concise explanation of optional parameters. Every sentence adds value, with no filler or repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's multi-action complexity and the absence of an output schema or annotations, the description covers the action list and high-level purpose but omits critical information about the 'params' object (required fields for create/update/delete). It also does not describe return values or error behavior, leaving users to guess at crucial usage details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds meaning to the action enum by explaining each value and provides examples/use for pick and filter. However, 'params' is left entirely unexplained both in the schema and the description, and schema coverage is only 50%. The description does not fully compensate for this missing parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Manage' combined with a clear resource 'KAS accounts and settings' and enumerates specific actions (list, get_resources, get_settings, create, update, delete). It clearly differentiates from sibling tools (kas_ssl, kas_dns, etc.) by focusing on account-level operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on what the tool is for (account and settings management), and the action list implies when to use it for tasks like listing accounts or retrieving resource usage. However, it does not explicitly state exclusions or point to alternatives (e.g., 'use kas_dns for DNS tasks'), so it misses the top tier.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses important behaviors like auto-generated database names, required database_login equality, and pick/filter side effects. Yet it omits consequences of delete, update semantics, permissions, and return/error behavior, leaving significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured: a one-line summary, per-action bullet points, and optional parameter notes. It is front-loaded with the resource type and every line adds operational value without unnecessary filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the moderate complexity of four actions and no annotations or output schema, the description covers action-specific parameters and optional pick/filter well. However, it lacks return format details and permission requirements, making it not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only provides a generic 'params' object with additionalProperties: true. The description supplies all parameter names and constraints per action, including the auto-generated name for create and the required database_login equality for update/delete. This is essential meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Manage MySQL databases' and then lists four specific actions (list, create, update, delete) with distinct parameter requirements. This clearly identifies the tool's function and differentiates it from sibling tools like kas_dns or kas_mail.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The action list and explicit parameter constraints (e.g., 'database_login required (same value as database_name)') make it clear when to use each action. However, it does not explicitly contrast this tool with alternatives or state when not to use it, stopping short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
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 important behavioral details: create_forward may fail with 'fetch failed' on first attempt, update_forward may fail with 'in_progress' after creation, and explains retry guidance. This goes beyond the basic action list, though it omits information about auth, rate limits, or destruction warnings.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately long but well-structured with action bullets and concrete examples. Every sentence adds value, and the front-loaded purpose statement makes it easy to parse. The length is justified by the tool's many actions.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema and the tool has many actions, the description provides a solid overview, including param formats and failure/retry notes. It does not cover params for lists/filters, but the overall picture is sufficiently complete for an agent to select and invoke the tool correctly in most cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is only 50%, so the description compensates by explaining key parameters: mail_login/mail_password for mailboxes, target_0/target_1 for create_forward, and mail_forward as the full address for update/delete. It also clarifies the optional pick and filter parameters, adding meaning beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Manage email: mailboxes, forwards, mailing lists, filters' which is a specific verb+resource, and enumerates concrete actions. It distinguishes from sibling tools (ssl, cronjob, dns, etc.) by explicitly focusing on email management.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context (email-related operations) but does not explicitly mention when not to use this tool or name alternative tools. The list of actions implies usage scenarios, but there are no exclusions or comparative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Key behavioral constraints are disclosed: the trailing dot requirement for zone_host, the string requirement for record_aux, and the need to obtain record_id from list before update/delete. The note that reset restores defaults also implies destructive behavior. No annotations are present, so the text carries the full burden and does so effectively.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a concise header, an IMPORTANT note, and a bulleted action list. It front-loads the core purpose and uses examples to illustrate constraints, ensuring every sentence contributes without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description is not obligated to explain return values, but it covers all five actions and their required parameters. It is mostly complete, though the update action's '...fields' is vague and could specify which fields are editable. Overall, it provides sufficient context for correct tool invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only documents pick and filter (50% coverage), leaving action and params generic. The description adds meaning by specifying exact parameter names and formats for each action (e.g., zone_host, record_aux: "0", record_name="" for root) and clarifying the optional pick/filter behavior. This goes well beyond the schema's structured data.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Manage DNS records (A, AAAA, CNAME, MX, TXT, SRV...)' which clearly states the verb and resource. The explicit list of record types and DNS-specific scope distinguish it from sibling tools like kas_domain or kas_ssl.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description organizes usage by action (list, create, update, delete, reset) with required params for each, providing clear context on when to invoke each action. It does not explicitly state alternatives or when not to use the tool, but the DNS-specific scope makes that unnecessary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hl9020/mcp-all-inkl'
If you have feedback or need assistance with the MCP directory API, please join our Discord server