Skip to main content
Glama

Server Quality Checklist

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

  • Disambiguation5/5

    Each tool has a clearly distinct purpose with no overlap: analyze_gcode_metadata parses G-code files, get_profile_content reads profiles, health_check diagnoses the server, list_profiles enumerates profiles, search_settings finds settings, slice_model performs slicing, and update_profile_setting modifies profiles. The descriptions clearly differentiate their functions, making misselection unlikely.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern using snake_case (e.g., analyze_gcode_metadata, get_profile_content, slice_model). The verbs are descriptive and appropriate for each action, and there are no deviations in naming conventions across the set.

    Tool Count5/5

    With 7 tools, the count is well-scoped for an OrcaSlicer server, covering essential operations like slicing, profile management, and diagnostics. Each tool serves a clear purpose without redundancy, and the number is manageable for agents to navigate effectively.

    Completeness4/5

    The tool set provides strong coverage for core 3D printing workflows, including slicing, profile handling, and G-code analysis. A minor gap is the lack of tools for creating or deleting profiles, which might require workarounds, but the existing tools support most common tasks without dead ends.

  • Average 3.3/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
    • 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 AGPL 3.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

  • Behavior2/5

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

    With no annotations provided, the description carries full burden for behavioral disclosure. It states it's a list operation, implying read-only behavior, but doesn't mention pagination, sorting, filtering beyond category, output format, or error conditions. This leaves significant gaps for a tool that likely returns multiple items.

    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, efficient sentence with zero wasted words. It's front-loaded with the core action and resource, making it easy to parse quickly.

    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 list operation with no annotations and no output schema, the description is incomplete. It doesn't explain what the output contains (e.g., profile names, IDs, metadata), how results are structured, or any limitations like maximum items returned. This leaves the agent guessing about the tool's behavior.

    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%, with the single parameter 'type' fully documented in the schema (including enum values). The description adds minimal value by restating the parameter's purpose ('for a given category') without providing additional context like default behaviors or examples.

    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 verb ('list') and resource ('profile files'), specifying the scope ('for a given category') with three enumerated categories. It distinguishes from siblings like 'get_profile_content' (which retrieves content) and 'update_profile_setting' (which modifies settings), but doesn't explicitly contrast with 'search_settings' which might overlap in listing functionality.

    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 provides no guidance on when to use this tool versus alternatives like 'search_settings' or 'get_profile_content'. It mentions the category parameter but doesn't explain prerequisites, limitations, or typical use cases beyond the basic function.

    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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'slice a model file' (implying a processing action) and a timeout parameter, but lacks details on permissions, side effects (e.g., file creation/deletion), error handling, or output format (G-code specifics). This is insufficient for a tool with potential file system impacts.

    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 concise and front-loaded, consisting of a single sentence that directly states the tool's purpose and key parameters. Every word contributes to understanding without redundancy or unnecessary elaboration.

    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 no annotations and no output schema, the description is incomplete. It doesn't explain the output (G-code file details), error conditions, or behavioral traits like whether it modifies input files or requires specific environment setups. Given the complexity of slicing operations, more context is needed.

    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%, so the schema fully documents all parameters. The description adds minimal value by summarizing parameters ('input/output filenames and optionally profiles'), but doesn't provide additional context like file format constraints or profile interactions beyond what's in the schema.

    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's purpose: 'Run OrcaSlicer CLI to slice a model file.' It specifies the verb ('slice') and resource ('model file'), though it doesn't explicitly differentiate from sibling tools like 'analyze_gcode_metadata' or 'list_profiles'.

    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?

    No guidance is provided on when to use this tool versus alternatives. The description mentions optional profiles but doesn't specify prerequisites, dependencies, or scenarios where other tools might be more appropriate, such as using 'get_profile_content' for profile details first.

    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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a read operation, implying it's non-destructive, but lacks details on permissions, error handling, rate limits, or return format (beyond 'full JSON content'). This is insufficient for a tool with no annotation coverage.

    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, efficient sentence that front-loads the core functionality ('Read and return the full JSON content'). There is zero waste, making it highly concise and well-structured for quick understanding.

    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?

    Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is minimally adequate. It covers the basic action but lacks details on behavioral traits, usage context, and output specifics, leaving gaps that could hinder effective tool invocation.

    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?

    The description adds no parameter semantics beyond what the input schema provides, which has 100% coverage with clear descriptions for both parameters. The baseline is 3 since the schema does the heavy lifting, but the description doesn't compensate with additional context like file location or JSON structure.

    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 action ('Read and return') and resource ('full JSON content of a profile file'), making the purpose immediately understandable. However, it doesn't explicitly differentiate this tool from sibling tools like 'list_profiles' or 'update_profile_setting', which would require a 5.

    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 provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'list_profiles' (which might list available profiles) or 'update_profile_setting' (which might modify profiles), leaving the agent without context for tool selection.

    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?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool parses metadata and returns JSON, but lacks details on error handling (e.g., invalid file), performance (e.g., processing time), or side effects (e.g., file access). This leaves gaps for a tool that reads and processes files.

    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, efficient sentence that front-loads the core action ('parse metadata') and includes all essential details (target, output, metadata types). There is no wasted verbiage, making it highly concise and well-structured.

    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?

    Given the tool's moderate complexity (file parsing), no annotations, and no output schema, the description is minimally adequate but incomplete. It covers the purpose and output format but lacks behavioral context (e.g., errors, limitations) and detailed usage guidelines, which are needed for a tool with file operations.

    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%, so the schema already documents the 'file' parameter as a G-code filename in the work directory. The description adds no additional parameter semantics beyond what the schema provides, such as file format requirements or examples, meeting the baseline for high schema coverage.

    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 clearly states the specific action ('parse metadata'), the target resource ('G-code file'), and the output format ('structured JSON'), distinguishing it from siblings like slice_model or list_profiles. It explicitly lists the types of metadata extracted (estimated time, filament usage, cost, layers), making the purpose unambiguous.

    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 provides no guidance on when to use this tool versus alternatives like slice_model or search_settings, nor does it mention prerequisites (e.g., file must exist in work directory) or exclusions. Usage is implied by the action but not explicitly contextualized relative to sibling tools.

    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?

    With no annotations provided, the description carries full burden for behavioral disclosure. It describes what the tool checks (binary reachability, directory accessibility) but doesn't disclose critical behavioral traits: what permissions are required, whether it performs active tests or passive checks, what happens if checks fail (errors vs. warnings), or what the output format will be. For a diagnostic tool with zero annotation coverage, this leaves 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/5

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

    The description is a single, efficient sentence that front-loads the core purpose ('diagnose the server environment') followed by specific checks. Every word earns its place with no redundancy or unnecessary elaboration.

    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?

    Given the tool's diagnostic nature, no annotations, and no output schema, the description is incomplete. It doesn't explain what the output will contain (e.g., status codes, detailed error messages, structured results), how to interpret results, or what actions might follow from the diagnosis. For a tool that presumably returns important system information, this is inadequate.

    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 with 100% schema description coverage, so the schema already fully documents the absence of parameters. The description appropriately doesn't discuss parameters, which is correct for a parameterless tool. Baseline for zero parameters is 4, as there's nothing to compensate for.

    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's purpose with specific verbs ('diagnose', 'check') and resources ('server environment', 'OrcaSlicer binary', 'settings/work directories'). It distinguishes from siblings by focusing on system health rather than slicing operations or profile management. However, it doesn't explicitly differentiate from all siblings (e.g., 'search_settings' might overlap conceptually).

    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 context ('diagnose the server environment') suggesting this tool should be used for system troubleshooting. However, it provides no explicit guidance on when to use this versus alternatives, no prerequisites, and no comparison to sibling tools like 'search_settings' which might also reveal accessibility issues.

    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 provided, the description carries the full burden of behavioral disclosure. It adds useful context about the dry_run behavior (saving to a tuned copy vs. overwriting), which is a key trait. However, it lacks details on permissions, error handling, or response format, leaving gaps for a mutation tool. No contradiction exists as annotations are absent.

    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 front-loaded with the core purpose and includes a crucial behavioral detail in a single, efficient sentence. Every word earns its place, with no redundancy or unnecessary elaboration, making it highly concise and well-structured.

    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?

    Given the tool's complexity as a mutation tool with 5 parameters and no output schema, the description is moderately complete. It covers the purpose and key behavior (dry_run), but lacks details on return values, error cases, or integration with sibling tools. With no annotations, it should do more to compensate, but it's adequate for basic understanding.

    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%, so the schema already documents all parameters thoroughly. The description adds minimal value beyond the schema by reiterating the dry_run default behavior, but doesn't provide additional meaning or examples for parameters like 'type' or 'value'. Baseline 3 is appropriate given high schema coverage.

    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 verb 'update' and the resource 'a single setting key in a profile', making the purpose specific and understandable. However, it doesn't explicitly differentiate this tool from potential siblings like 'search_settings' or 'get_profile_content', which might handle similar profile data but with different operations.

    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 mentioning the default behavior (dry_run=true saves to a tuned copy), which suggests this tool is for modifying profile settings. However, it doesn't provide explicit guidance on when to use this vs. alternatives like 'search_settings' or 'list_profiles', nor does it specify prerequisites or exclusions, leaving the context somewhat vague.

    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 provided, the description carries the full burden of behavioral disclosure. It effectively describes the search behavior (fuzzy matching on keywords) and output format (returns settings and their current values), but lacks details on permissions, rate limits, pagination, or error handling. The description adds useful context beyond the schema but doesn't fully compensate for the absence of annotations.

    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 perfectly concise with two sentences that each earn their place: the first defines the tool's purpose and scope, the second provides usage guidance with a concrete example. No wasted words, and information is front-loaded appropriately.

    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 moderate complexity (2 parameters, no output schema, no annotations), the description is reasonably complete. It explains what the tool does, when to use it, and what to expect in results. However, without annotations or output schema, it could benefit from more behavioral details like response format specifics or limitations. The description compensates well but has minor gaps.

    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%, so the schema already documents both parameters thoroughly. The description adds marginal value by providing an example ('e.g. query "infill" returns all infill-related settings') that illustrates parameter usage, but doesn't add significant semantic information beyond what the schema provides. Baseline 3 is appropriate when the schema does the heavy lifting.

    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 clearly states the specific action ('search for setting keys containing a keyword'), identifies the resource ('across all (or a specific type of) profiles'), and distinguishes it from siblings by focusing on fuzzy keyword search rather than exact key operations. It provides a concrete example ('query "infill" returns all infill-related settings and their current values') that reinforces the purpose.

    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 states when to use this tool ('Useful when you don't know the exact key name') and implies alternatives by contrasting with sibling tools like 'get_profile_content' or 'update_profile_setting' that might require exact keys. It also provides context about optional filtering by profile type, guiding usage decisions.

    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

orcaslicer-mcp MCP server

Copy to your README.md:

Score Badge

orcaslicer-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/itsumonotakumi/orcaslicer-mcp'

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