Skip to main content
Glama

Server Details

MCP CAD services; bundles with SmartScale (measure to CAD).

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
jdhart81/viridis-agent-fleet
GitHub Stars
0
Server Listing
viridis-agent-fleet

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.4/5 across 6 of 6 tools scored. Lowest: 2.6/5.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose, from workspace management to design generation and manufacturing planning, with no overlapping functionality.

Naming Consistency4/5

Most tools follow a verb_noun pattern (e.g., create_cad_workspace, generate_cad_design), but 'describe' and 'health' are one-word names, and 'manufacturing_plan_from_spec' uses a different structure, leading to minor inconsistency.

Tool Count5/5

With 6 tools covering workspace creation, design generation, export, and manufacturing planning, the count is well-scoped and appropriate for the server's purpose.

Completeness4/5

The tool set covers core workflows (create, generate, export, plan) and status checks, but lacks update/delete operations for CAD designs, which may limit iterative editing.

Available Tools

6 tools
create_cad_workspaceBInspect

Create a ProtoGen CAD workspace for another agent or workflow.

ParametersJSON Schema
NameRequiredDescriptionDefault
request_idNo
constraintsNo
design_goalYes
owner_agentYes
payment_refNo
project_nameYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
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. It mentions 'create' but omits details about side effects (e.g., whether a workspace is persisted, if it can be overwritten), dependencies, or authorization needs. The description is too minimal 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.

Conciseness3/5

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

The description is a single concise sentence, but it is overly terse, sacrificing necessary detail. It could be expanded slightly to include parameter hints or usage notes without losing conciseness.

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 has 6 parameters, no parameter descriptions, and no annotations, the description is insufficient for an agent to invoke the tool correctly. The existence of an output schema does not compensate for the lack of parameter and behavioral guidance.

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 does not explain any of the 6 parameters (e.g., project_name, owner_agent, design_goal, constraints, payment_ref, request_id). The agent receives no guidance on what values to provide.

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 action 'Create', the resource 'ProtoGen CAD workspace', and the target audience 'for another agent or workflow'. It effectively distinguishes from sibling tools like describe, export_cad_design, generate_cad_design, etc., which focus on different tasks.

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 the context of use ('for another agent or workflow'), which implies when to use this tool. However, it does not explicitly state when not to use it or compare with alternatives, though the sibling names give indirect differentiation.

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

describeAInspect

Return ProtoGen capabilities and current CAD environment status.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior3/5

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

No annotations are provided, so the description carries full burden. It describes a read operation ('Return') but does not explicitly state that it is read-only, safe, or lacks side effects. It also omits any mention of authorization requirements or rate limits, though the operation is likely safe.

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?

Single sentence, zero waste, front-loaded with action and subject. Every word earns its place.

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?

The description is brief but adequate for a zero-parameter tool with an output schema present. It explains the purpose without needing to detail return values, as the output schema handles that. However, it could be slightly more explicit about the scope (e.g., 'current environment' might be vague).

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 no parameters and schema coverage is 100%, so baseline is 4. The description adds no further parameter information, but none is needed.

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 it returns ProtoGen capabilities and current CAD environment status, using a specific verb ('Return') and resource ('ProtoGen capabilities and current CAD environment status'). With no parameters, the purpose is unambiguous and distinguishes it from sibling tools that perform actions like creating or exporting.

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 implies usage for getting information before performing other operations, but does not explicitly state when to use this tool vs. alternatives like 'health'. The context is clear given its zero-parameter nature, but no exclusions or alternative hints are provided.

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

export_cad_designCInspect

Export a CAD design as OpenSCAD, STEP contract metadata, or manufacturing brief.

ParametersJSON Schema
NameRequiredDescriptionDefault
design_idYes
payment_refNo
export_formatNoopenscad

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior2/5

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

With no annotations, description must disclose side effects. It only says 'Export' which is ambiguous—could be read-only or create files. No mention of auth, rate limits, or irreversible 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/5

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

One sentence, front-loaded with verb and resource. Efficient but could be slightly more structured to list parameters or usage.

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 has 3 parameters and an output schema, the description is too brief. It doesn't explain what each format does, when payment_ref is needed, or what the output contains.

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%, yet the description does not explain any parameters. The export_format default is 'openscad' but the description lists three formats without mapping to parameter values. payment_ref is not mentioned at all.

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?

Description clearly states the tool exports a CAD design and lists three export formats (OpenSCAD, STEP contract metadata, manufacturing brief). However, it doesn't explicitly differentiate from sibling tools like generate_cad_design or manufacturing_plan_from_spec, which may also produce similar outputs.

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 on when to use this tool versus alternatives, or prerequisites. For example, it doesn't specify that the design must exist or that payment_ref is needed for certain formats.

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

generate_cad_designCInspect

Generate a parametric CAD design contract in a ProtoGen workspace.

ParametersJSON Schema
NameRequiredDescriptionDefault
featuresNo
materialNoaluminum
part_nameYes
request_idNo
payment_refNo
workspace_idYes
design_intentNo
dimensions_mmYes
output_formatsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior2/5

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

With no annotations, the description carries full burden but only states the action. It omits behavioral traits such as side effects (e.g., overwriting existing designs), authentication needs, rate limits, or implications of the payment_ref parameter. The agent learns nothing about safety or costs.

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 one sentence with no redundant words. It front-loads the core action. However, given the tool's complexity, slightly more detail would not be excessive; still, it earns its place.

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?

Despite an output schema and nested parameters, the description is a single sentence. It does not explain the concept of a 'design contract,' the role of payment_ref, or how outputs are returned. The tool is high-complexity (9 params, nested), but the description is minimal.

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?

The schema has 0% description coverage across 9 parameters, yet the description provides no parameter explanations. It fails to clarify the meaning of key parameters like design_intent, features, or payment_ref, making it extremely hard for the agent to use them correctly.

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 'Generate a parametric CAD design contract in a ProtoGen workspace,' specifying the verb 'generate,' the resource 'parametric CAD design contract,' and the scope 'ProtoGen workspace.' This distinguishes it from siblings like create_cad_workspace (workspace creation) and export_cad_design (export), leaving no ambiguity.

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 (e.g., compared to create_cad_workspace or manufacturing_plan_from_spec). The description lacks any context about prerequisites, suitability, or exclusions, forcing the agent to infer usage.

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

healthAInspect

Return ProtoGen health and workspace counts.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior4/5

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

With no annotations, the description bears the full burden. It states the tool returns health and workspace counts, which is the core behavior. No side effects or destructive actions are implied, which is accurate for a read-only health check. Could mention if authentication is needed, but not critical.

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?

Single sentence, directly states the function. No wasted words. Front-loaded and appropriately sized for a parameterless health check tool.

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 zero parameters, no annotations, and the presence of an output schema (assumed to document return structure), the description is complete enough. It tells the agent what the tool returns (health and workspace counts) and nothing more is needed.

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?

No parameters, and schema coverage is 100% (empty). The description adds no parameter info, but none is needed. Baseline 4 applies since schema already fully covers parameter semantics.

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?

Description clearly states it returns health and workspace counts. The verb 'Return' and resource 'ProtoGen health and workspace counts' is specific and distinct from sibling tools, which focus on CAD operations (create, describe, export, generate, manufacturing_plan).

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?

No explicit guidance on when to use this tool versus alternatives. However, the tool's purpose is self-evident as a health check, and sibling tools are functionally distinct (creating/exporting/describing CAD designs). Lacks explicit when-not or context triggers.

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

manufacturing_plan_from_specBInspect

Generate a manufacturing plan, BOM, DFM notes, and cost estimate from a product spec.

ParametersJSON Schema
NameRequiredDescriptionDefault
request_idNo
payment_refNo
product_specYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits. It only states what the tool does (generates outputs) without mentioning side effects, required permissions, constraints (e.g., cost, time), or any behaviors like file creation or external calls. This is insufficient for an agent to fully understand the tool's impact.

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

Conciseness3/5

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

The description is a single sentence, concise with no wasted words. However, it does not front-load critical details, and the brevity sacrifices necessary context for parameter semantics and behavioral transparency. It could be reorganized to include key information without adding length.

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?

The tool has 3 parameters (1 required) and generates multiple outputs, but the description only mentions the input 'product spec' and not the optional parameters. The presence of an output schema partially compensates, but the description fails to contextualize the outputs or any prerequisites, making it incomplete for an agent to determine correct usage.

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 should explain all parameters. It only references 'product_spec' implicitly, ignoring 'request_id' and 'payment_ref'. The optional parameters lack any description, leaving an agent without guidance on their purpose or format. The description adds minimal value beyond the schema.

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 verb 'Generate' and the resources: manufacturing plan, BOM, DFM notes, and cost estimate. It distinguishes the tool from siblings which focus on CAD workspaces, health, and describe, making the purpose specific and unambiguous.

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 when a product spec is available to generate a manufacturing plan, but it does not provide explicit guidance on when to use this tool versus alternatives, nor does it mention any prerequisites or exclusions. The context from sibling names helps infer uniqueness, but the description itself lacks direct usage direction.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Drive the OpenTakeoff construction takeoff engine from any MCP client: open plan PDFs, set and verify drawing scale, one-click room areas, measure lengths, and export takeoff quantities. Runs locally over stdio via npx -y opentakeoff-mcp.
    Last updated
    36
    50
    Apache 2.0
  • F
    license
    A
    quality
    B
    maintenance
    CAD-engineering MCP tool server for parametric modeling, DFM validation, mechanical calculations, and more. Enables code-CAD builds (build123d/CadQuery), model inspection, meshing, and mechanical calculators via MCP stdio.
    Last updated
    11
  • A
    license
    -
    quality
    B
    maintenance
    An MCP server that parses CAD files (.dwg, .dxf, .dwf, etc.) via the Cadlens API, enabling LLM clients to extract and reason over entity, layer, and metadata payloads.
    Last updated
    49
    1
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    MCP server for full AutoCAD automation, AutoCAD LT automation, and headless DXF generation. It provides 8 consolidated tools for drawing, entity, layer, block, annotation, P&ID, view, and system operations via MCP stdio transport.
    Last updated
    3
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.