Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation5/5

    Each tool addresses a distinct phase or concern: planning, spec validation, comparison, pass gating, and resource lookup. There is no ambiguity between them; the descriptions clearly separate their roles.

    Naming Consistency4/5

    All tool names share the sculpt_ prefix, but the suffixes mix verbs (compare) and nouns (plan, grimoire) with compound nouns (spec_gate, pass_gate). This is mostly consistent but not a uniform verb_noun pattern.

    Tool Count5/5

    5 tools is well within the ideal 3-15 range, and each tool serves a necessary, non-redundant function within the workflow.

    Completeness4/5

    The core workflow of plan, validate, compare, gate, and fetch resources is well covered. Minor gaps exist, such as no direct way to list all grimoire topics without triggering an error, but the surface is sufficient for the likely use case.

  • Average 3.6/5 across 5 of 5 tools scored. Lowest: 2.9/5.

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

    • No community issues in the last 6 months
    • 5 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 Apache 2.0.

  • 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.json to 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

  • Behavior3/5

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

    Annotations already declare readOnlyHint and idempotentHint, so the tool's safety profile is known. The description adds insight into the decision mechanism—semantic review has authority, deterministic scores correct, and ambiguity blocks—which is beyond the annotations. Yet it stops short of explaining conditions for retry vs stop or the effect of thresholds and maxAttempts.

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

    Conciseness4/5

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

    The description is a single well-structured sentence that front-loads the primary output ('Return advance, retry, or stop'). It packs meaningful logic without unnecessary verbiage, though its density may reduce immediate comprehensibility.

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

    Completeness2/5

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

    For a tool with seven parameters, nested objects, and no output schema, this description is far too sparse. It neither describes the inputs' semantics beyond two concepts nor explains return value structure or usage scenarios, leaving significant gaps for an agent.

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

    Parameters2/5

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

    Schema description coverage is 0%, so the description must compensate, but it only hints at semanticReview and compareResult.ambiguous. Critical parameters such as passId, threshold, maxAttempts, and minimumConfidence are not explained in the description, leaving the agent with little context for how to set them.

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

    Purpose4/5

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

    The description clearly states the tool returns a decision among advance, retry, or stop, which is a specific action. It further explains the decision logic by referencing semantic review, deterministic scores, and ambiguous comparisons, giving it distinct behavioral framing. However, it does not explicitly differentiate itself from sibling gate tools like sculpt_spec_gate.

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

    Usage Guidelines2/5

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

    The description gives no explicit guidance on when to use this tool versus alternatives. It implies a gating step in a sculpt pipeline but does not mention sibling tools, prerequisites, or exclusion criteria.

    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 annotations already declare readOnlyHint and idempotentHint, so the agent knows this is a safe, repeatable operation. The description adds that the tool 'validates' an image and returns resources, but it does not disclose any deeper behavioral details (e.g., what 'validate' means, failure modes, or how the result should be consumed). This is acceptable 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/5

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

    The description is a single sentence that is front-loaded with the primary action ('Validate a reference image') and then lists the output. There is no filler or redundancy, making it highly efficient for the agent to parse.

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

    Completeness3/5

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

    For a simple read-only tool with two string parameters and no output schema, the description gives a basic sense of purpose and expected results. However, it does not explain key terms like 'eight-pass sculpt order', 'technique-safe grimoire resources', or how to handle validation failures. Given the sibling tools, the agent may need more context to know if this is the right stage to call.

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

    Parameters2/5

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

    Schema description coverage is 0% and the description only hints at one parameter ('reference image' implying referencePath). It does not explain 'intent' at all, and even the referencePath relationship is implicit. With two required parameters and no schema descriptions, the description fails to compensate, leaving the agent guessing about parameter semantics.

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

    Purpose4/5

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

    The description clearly states the tool validates a reference image and returns a specific artifact (the locked eight-pass sculpt order plus grimoire resources). This goes beyond a tautology and gives a concrete outcome. However, it does not explicitly differentiate from sibling tools like sculpt_grimoire or sculpt_compare, which also involve validation or grimoire concepts.

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

    Usage Guidelines3/5

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

    The description implies this tool is for planning the sculpt order after validating a reference image, but it never states when to use this over alternatives like sculpt_spec_gate or sculpt_grimoire. There are no explicit 'when to use' or 'when not to use' instructions, leaving the agent to infer the context from the tool name and outcome.

    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?

    Annotations already declare readOnlyHint=true and idempotentHint=true, covering the safety profile. The description adds meaningful context by specifying that it validates the ObjectSculptSpec contract and complexity depth thresholds, and that this happens before coding. It does not explain failure behavior or return format, but for a read-only gate with annotations this is acceptable.

    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?

    A single, front-loaded sentence that immediately conveys the action and target. No unnecessary words or repetitive content, making it highly concise and easy to parse.

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

    Completeness2/5

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

    For a validation tool with no output schema and an undocumented complex parameter, the description is incomplete. It gives purpose and timing but omits what the return value looks like (success/failure, details) and how to construct the 'spec' argument. Given the tool's moderate complexity, this is a significant gap for correct invocation.

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

    Parameters1/5

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

    Schema description coverage is 0% and the description provides no guidance on the single required 'spec' parameter, which is a complex object with arbitrary properties. The description must compensate for the lack of schema details but fails entirely, leaving agents without any hint of how to structure the spec.

    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 the specific verb 'Validate' with a clear resource ('MCP runtime ObjectSculptSpec contract and canonical complexity depth thresholds') and temporal context ('before code is written'). This clearly distinguishes it from sibling tools such as sculpt_pass_gate, which likely serves a different gating purpose.

    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 timing guidance ('before code is written') which implies when to use this tool in a workflow. It does not explicitly name alternative tools or exclusion scenarios, but the temporal context offers a solid usage signal.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

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

    Annotations already indicate readOnlyHint and idempotentHint. The description adds valuable behavioral guarantees: 'deterministic,' 'existing capture and reference,' 'never launches a browser,' and 'never authorizes advancement.' This goes beyond the annotations and clarifies side effects and boundaries. No contradiction.

    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 succinct sentences. The first states the core function and scope; the second adds safety/behavioral boundaries. Every word earns its place, no repetition.

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

    Completeness3/5

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

    The description covers purpose, safety, and general input semantics, but with no output schema it does not describe the structure or format of the 'diagnostic evidence' returned. It also leaves the region object details implicit. It is adequate for a simple read-only compare-like tool but not fully complete for an agent to invoke it with full confidence.

    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 0%, so the description must compensate. It adds meaning by referring to 'capture and reference' (capturePath/referencePath) and 'normalized region' (regions), indicating existing inputs and normalized coordinates. However, it does not explain the id field inside regions, the default behavior of regions (global comparison when empty), or file path formats, leaving some gaps.

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

    Purpose4/5

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

    The description clearly identifies the action ('Produce deterministic diagnostic evidence') and the resources ('existing capture and reference'), and it distinguishes the tool from gate/plan siblings by noting it 'never authorizes advancement.' It stops short of explicitly saying 'compare,' though 'capture and reference' plus 'evidence' strongly imply it.

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

    Usage Guidelines3/5

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

    The description gives context: use when you need deterministic diagnostic evidence from existing captures/references, not for browser-based actions or advancing a gate. It provides exclusions ('never launches a browser,' 'never authorizes advancement') but does not name alternative sibling tools or explicitly state when this tool should be chosen over them.

    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?

    Annotations already declare readOnlyHint and idempotentHint, covering the safety profile. The description adds valuable behavioral insight: it explicitly states that unknown and concrete shader/material recipe topics cause failures and that valid topics are listed in response. This goes beyond the annotations to explain failure behavior and self-correction.

    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 primary action, and every sentence earns its place. It is concise, clear, and free of redundant information.

    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?

    Given the tool's simplicity (one parameter, no output schema), the description is sufficiently complete. It explains the key behavior of failing on invalid topics and listing valid ones, which is critical for correct invocation. Minor absence is the lack of return format details, but the 'grimoire page' concept and failure handling make the tool usable.

    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?

    Schema coverage is 0%, so the description carries the full burden of explaining the 'topic' parameter. It clarifies that the topic should be a technique-safe grimoire topic, not a concrete shader/material recipe, and it reveals that valid topics are enumerated on failure. This provides enough semantic guidance despite lacking examples of valid topics.

    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 ('Fetch') and resource ('grimoire page by topic'), which clearly states the tool's action and scope. It also distinguishes this from sibling tools (sculpt_plan, sculpt_spec_gate, sculpt_compare, sculpt_pass_gate) that focus on planning, gating, or comparison rather than retrieval.

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

    Usage Guidelines3/5

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

    The description implies usage by stating that topics must be technique-safe and that unknown or concrete recipe topics fail and list valid topics. However, it does not explicitly mention when to use this tool instead of siblings, nor any alternatives or exclusions beyond the topic constraints.

    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

threenative-sculpt-mcp MCP server

Copy to your README.md:

Score Badge

threenative-sculpt-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/jonit-dev/threenative-sculpt-mcp'

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