Skip to main content
Glama
Solitario119

IC-CAP MCP Server

by Solitario119

model_create

Create a top-level model container to organize circuit netlists, DUTs, parameters, and variables. Enable overwrite only to replace an existing model.

Instructions

Create a Model object. Model is the top-level container with circuit netlist, DUTs, parameters, and variables. Set overwrite=true explicitly to replace an existing Model.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
circuitNoOptional SPICE circuit netlist
overwriteNoDelete and replace an existing Model only when explicitly enabled
model_pathYesModel path, for example '/gan_hemt'
allow_without_checkpointNoProceed only if an automatic pre-overwrite save fails; use with care

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.2

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full behavioral burden. It clearly discloses the destructive overwrite behavior and requires explicit opt-in ('overwrite=true explicitly'), which is important safety-relevant context. It does not mention other potential side effects like automatic parent creation or failure modes, but the overwrite disclosure is strong for a create operation.

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 primary action is front-loaded, and the second sentence adds the critical overwrite safety instruction. Every clause 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?

For a create operation with no output schema and no annotations, the description adequately covers purpose, container semantics, and the overwrite caveat. Combined with fully documented parameters, everything needed to invoke the tool correctly is present. It could mention success/error return behavior, but that is not essential for correct 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?

Schema description coverage is 100%, so all four parameters (circuit, overwrite, model_path, allow_without_checkpoint) are already documented in the input schema. The description adds context about the Model's role but adds no parameter-level meaning beyond the schema, 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 states a specific verb ('Create'), a specific resource ('Model object'), and explains what a Model is ('top-level container with circuit netlist, DUTs, parameters, and variables'). This distinguishes it from sibling creation tools like dut_create or setup_create, so an agent can identify the right object type to create.

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 a key invocation condition ('Set overwrite=true explicitly to replace an existing Model') but does not provide explicit when-to-use guidance or name alternatives. The context signal of many sibling create tools makes this gap noticeable; the agent must infer when model_create is preferred over object_create or other creation flows.

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

Deploy Server

Other Tools