Skip to main content
Glama
jgsystemsconsulting

jgs-magic-sysmlv1-mcp

create_enumeration

Create a SysML enumeration with specified literal names under a given parent element.

Instructions

Create an Enumeration with the given literal names under parent_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
literalsYes
parent_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.3/5.0
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 only states that it creates an enumeration, but does not disclose any behavioral traits such as side effects, prerequisites (e.g., does parent_id need to exist?), validation rules for literals, or whether the operation is reversible. This is a significant gap 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.

Conciseness5/5

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

A single, well-formed sentence with no unnecessary words. It is front-loaded with the action and resource, and every phrase adds value.

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?

Although an output schema exists (so return format is covered), the description is too thin for a creation operation. It does not address what happens on invalid parent_id, whether literals have format constraints, or any side effects on the model. With no annotations and minimal description, an agent lacks critical context to invoke this safely.

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. It mentions 'literal names' (covering literals) and 'under parent_id' (covering parent_id), but does not explicitly explain the 'name' parameter (the enumeration's own name). Since two of three parameters are only implicitly referenced, the description adds some meaning but leaves the name ambiguous.

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 (Create), resource (Enumeration), and the context (under parent_id). It distinguishes this tool from the many other create_* siblings by naming the specific resource type, so an agent can tell it apart without opening the schema.

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?

Usage is implied: use this when you need to create an enumeration. However, it does not explicitly state when not to use it or mention any alternatives. Given the large sibling list, explicit guidance would help, but the purpose is clear enough to infer the appropriate context.

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