Skip to main content
Glama
AKzar1el

GodPrompt MCP Server

Server Quality Checklist

100%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Every tool has a clearly distinct purpose: full-file retrieval, individual progressive-disclosure components, task classification, and version info. The only potential overlap is get_god_prompt versus the core/* tools, but the descriptions explicitly frame them as full payload versus progressive disclosure.

    Naming Consistency5/5

    The naming pattern is highly consistent: most tools use get_<resource> for retrieval, and classify_task is a clear verb_noun action. The names map directly to their content and follow a predictable convention across the entire set.

    Tool Count5/5

    Seven tools is well-scoped for this server's purpose: five content access points, one classification utility, and one version endpoint. Each tool earns its place without redundancy or bloat.

    Completeness5/5

    The server covers the complete GodPrompt payload, every core progressive-disclosure file, versioning, and task-type routing. There are no obvious dead ends or missing lifecycle operations for the stated purpose.

  • Average 4.4/5 across 7 of 7 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 3 commits in the last 12 weeks
    • Last stable release on
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • Tools from this server were used 4 times in the last 30 days.

  • This repository includes a glama.json configuration file.

  • This server has been verified by its author.

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

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden of behavioral disclosure. 'Returns' implies a read-only operation, but the description does not explicitly state that there are no side effects, what the response format is, or whether any authentication is needed.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single, front-loaded sentence with no filler. Every word contributes to the tool's purpose, making it easy to scan and understand quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a simple, zero-parameter version tool, the description provides adequate context by stating what is returned. It could be slightly more explicit about the output shape, but the low complexity and clear purpose make the description nearly complete.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters and schema description coverage is 100%, so there are no parameter semantics to clarify. Per the rubric, a no-parameter tool earns a baseline of 4 because parameter ambiguity is nonexistent.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses a specific verb ('Returns') and a clear resource ('the current GodPrompt version') plus a summary, which makes the tool's purpose immediately understandable. It is clearly distinguishable from sibling tools like get_god_prompt, which would return the prompt itself rather than version metadata.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description clearly implies this tool is for retrieving version information and an included summary, giving an agent enough context to know when to call it. It does not explicitly list exclusions or alternative tools, but the unique resource makes routing straightforward.

    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?

    No annotations are provided, so the description carries the behavioral burden. It clearly states the transformation (task description in, protocol name out) and names the fixed classification set. It does not detail edge cases, confidence, or output format beyond the protocol name, but for a pure classification operation this is reasonably transparent.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Two sentences with no filler. The core behavior, the full enumeration of task types, and the return value are all packed efficiently. Every sentence earns its place.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a one-parameter classifier with full schema coverage, the description is complete. It states the input, the closed set of classification categories, and the output. No output schema exists, but the description's statement of the return value covers what an agent needs to know.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 100%: the input schema already fully documents the sole 'description' parameter with examples. The tool description adds no parameter-specific meaning beyond restating that it classifies a task description, so the baseline score of 3 is appropriate.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses a specific verb ('Classify') and a clear resource ('a task description'), enumerates all 9 possible output task types, and states the return value ('matching protocol name'). This clearly differentiates it from sibling retrieval tools like get_god_prompt or get_protocols, which fetch content rather than classify.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description provides clear context: it is 'useful for routing tasks through the right workflow,' which tells the agent when this classifier should be invoked. It does not explicitly mention when not to use it or compare it to sibling tools, but the routing context is sufficient guidance for this straightforward tool.

    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?

    No annotations are provided, so the description carries the behavioral disclosure burden. It does state what is returned and even the approximate size (~13KB), which is useful. However, it does not explicitly mention that the operation is read-only, has no side effects, or describe the output format beyond being a markdown file.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is two sentences with no filler. The first sentence front-loads the core information: what is returned and what it contains. The second sentence gives the usage trigger and size, both of which earn their place.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a simple retrieval tool with no parameters and no output schema, this description is complete. It identifies the file, summarizes its contents, enumerates coverage, and states when to load it. An agent has enough information to decide and invoke correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters, so there is no parameter semantics burden for the description to carry. The baseline for a zero-parameter tool is 4, and the description appropriately avoids introducing any phantom parameters.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description opens with a specific verb ('Returns') and names the exact resource (core/01-PROTOCOLS.md), then lists the task types covered. It also signals differentiation from the sibling get_core_skill by saying 'beyond the core skill', so an agent can tell what makes this tool distinct.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives an explicit trigger condition: 'Load this when the task requires detailed protocol steps beyond the core skill.' This tells the agent when to use it, though it does not explicitly name alternatives or state when not to use it, which keeps it just below a 5.

    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, the description carries the full burden and delivers: it discloses the returned resource, the nature of the content, the number of items, and the file size. It doesn't describe output formatting, but for a simple markdown file retrieval that is a minor gap.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Three sentences, each earning its place: resource path, content summary, and usage trigger. The size note is efficient extra orientation.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given a zero-parameter tool with no output schema, the description provides all necessary context: what file is returned, what it contains, when to use it, and expected size. Nothing essential is missing.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema is empty (0 parameters), so parameter semantics are trivially satisfied. The description adds useful context about the content within the file, which is more than necessary.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    States a specific verb ('Returns') and a precise resource (core/03-ANTI-PATTERNS.md), then summarizes the content. It clearly distinguishes itself from sibling docs like get_protocols or get_gates by focusing on anti-patterns and rationalization.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    Explicitly tells the agent when to load: 'when you catch yourself rationalizing.' It doesn't name sibling alternatives or exclusions, but the trigger context is clear enough for selection.

    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, the description carries the full burden of behavioral disclosure. It clearly explains what the tool returns, the approximate size (~10KB), and the contained content, which is strong context for a simple read-only retrieval 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/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Two sentences deliver the essential information with no waste: what is returned, its purpose, its size, its contents, and how to use it. The key fact is front-loaded and every sentence earns its place.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a zero-parameter, read-only file retrieval tool, the description is complete. It explains what is returned, why it matters, and when to load it, leaving no meaningful gap for an agent deciding to call it.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters, so the schema provides no meaningful information. The description adds no parameter details, but with no parameters required, the baseline of 4 is appropriate.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a specific verb and resource ('Returns core/00-THE-SKILL.md') and clearly identifies what the file contains. It distinguishes itself from sibling tools by framing this as the lean base context that should be loaded on every message.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    It gives explicit usage guidance: the file 'should be loaded on every message' and is the starting point for progressive disclosure. It does not explicitly name alternatives or when-not-to-use cases, but for a universal base-context tool the guidance is clear and sufficient.

    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, the description carries the full burden. It transparently states the tool returns a file, enumerates its contents, and notes the size (~9KB). It does not explicitly say it is read-only, but the nature of returning a markdown file makes the behavior clear and complete enough.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Two sentences, front-loaded with what the tool returns and followed by a crisp usage trigger. Every word earns its place; no filler or redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a parameterless, read-only file retrieval tool with no output schema, the description is complete: it names the file, summarizes the content, gives a usage trigger, and even indicates size. There is nothing critical missing for an agent to select and invoke it correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters, so the baseline is 4. The description does not need to explain parameters; it adds value by describing what the returned document contains, which is more useful than parameter details would be.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a specific action and resource: 'Returns core/02-GATES.md' and details its contents (verification checklists, THE GATE, report templates). This clearly distinguishes it from the sibling get_* tools, which target different files.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    Explicitly tells the agent when to load it: 'when you need to verify work before claiming completion.' It does not mention specific exclusions or directly compare to siblings, but the trigger condition is clear enough to route to this tool.

    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?

    There are no annotations, so the description carries the full burden. It discloses the large payload (40KB, ~1145 lines), which is a key behavioral trait affecting context usage. It also implies a simple read-only retrieval with no parameters, though it does not explicitly mention side-effect-freedom or failure modes; for this simple static-file retrieval, the disclosure is sufficient.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is two sentences, front-loaded with the main action and file details, then immediately provides usage conditions and the alternative. Every sentence earns its place and there is no redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a no-parameter, no-output-schema retrieval tool, the description is complete. It states what is returned, the size/context impact, when to use it, and the alternative for smaller context. The agent has all the information needed to invoke it correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters4/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The tool has zero parameters and the schema is already fully descriptive (empty properties). The baseline for zero-parameter tools is 4, and the description adds no conflicting or missing parameter guidance. There is nothing more to document.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a specific verb ('Returns') and a specific resource ('the complete GodPrompt.md'), and characterizes it as a single-file universal system prompt. It also distinguishes this tool from siblings by naming the progressive-disclosure core/* tools as the alternative for smaller context, so an agent can tell them apart.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines5/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description explicitly gives the trigger condition: 'Use this when you want the full payload in one shot.' It also names the alternative strategy, progressive disclosure via core/* tools, so the agent knows exactly when this tool is appropriate versus when it is not.

    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

god-prompt-mcp MCP server

Copy to your README.md:

Score Badge

god-prompt-mcp MCP server

Copy to your README.md:

Latest Blog Posts

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/AKzar1el/god-prompt-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server