design-flow-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@design-flow-mcplock round 2 for project Phoenix"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Design Flow MCP
A thin MCP bridge between ChatGPT-compatible MCP clients and Design Flow System v0.2.
The repository also contains a private Custom GPT Action REST API under design_flow_action_api. Both transports call the same adapter and engine; neither owns semantic authority.
The adapter exposes a small capability-based tool surface while all decisions, provenance, TRACE, validation, persistence, and commit boundaries remain inside the Design Flow engine.
What this is
A transport and orchestration layer around
design-flow-system.Adapter version
0.1.0.Engine version
0.2.0, pinned to merge commit30bedf2032179fcb46186f30cc86c33b070c17d1.One active Design Flow project/session per server process; multiple project paths may exist below the configured root.
Related MCP server: mcp-kicad-sch-api
What it is not
Not the Design Flow semantic engine.
Not an LLM provider.
Not a database.
Not a replacement for the Design Flow CLI.
Not a shell, filesystem browser, Python evaluator, or raw-state editor.
Authority boundary
import_draft changes working draft state but creates no decision authority. preview_round is explicitly non-authoritative. Only lock_round can change decision authority, and it calls PersistentProject.lock_draft() rather than editing persistence files. No tool directly edits decisions, concepts, supersession, TRACE, manifests, hashes, or project JSON.
Tools
Read-only tools:
readiness, get_state, get_unresolved, get_round, preview_round, compile_context_handoff, compile_living_document, recommend_next_round, get_decision_ledger, get_concepts, get_trace, and get_session_brief.
Working/session or authority-changing tools:
new_projectandresume_projectcreate or open a project and engine session.import_draftchanges non-authoritative working state.lock_roundis the only decision-authority-changing tool.end_sessionends the Design Flow session without marking the project complete.
See Tool contracts for preconditions and exact boundaries.
Project-root security
Set DESIGN_FLOW_PROJECT_ROOT to the only directory projects may occupy. Relative paths are resolved below it. Parent traversal, absolute escapes, and detectable symlink escapes are rejected. Draft file imports are subject to the same confinement.
Local setup on Windows PowerShell
cd $HOME\Documents
git clone https://github.com/fargo161/design-flow-mcp.git
cd design-flow-mcp
python -m venv .venv
.\.venv\Scripts\python.exe -m pip install -e .
$env:DESIGN_FLOW_PROJECT_ROOT="$HOME\Documents\DesignFlowProjects"
New-Item -ItemType Directory -Force $env:DESIGN_FLOW_PROJECT_ROOT | Out-Null
.\.venv\Scripts\python.exe -m design_flow_mcp.serverThe default transport is local stdio, where the MCP client launches this command as a subprocess.
For local Streamable HTTP development:
.\.venv\Scripts\python.exe -m design_flow_mcp.server --transport streamable-http --host 127.0.0.1 --port 8000The MCP endpoint is http://127.0.0.1:8000/mcp. Streamable HTTP is a deployment surface, not an authentication or tunneling solution. Do not expose it publicly without HTTPS, authentication, network policy, and the MCP SDK's production host/origin configuration.
Development
For an editable local engine checkout, install it first and install this adapter without resolving dependencies:
python -m pip install -e ..\design-flow-system
python -m pip install "mcp>=2,<3" build
python -m pip install -e . --no-deps
python -m unittest discover -s tests -v
python -m buildNormal installation uses the exact Git dependency declared in pyproject.toml; engine source is not copied or vendored here.
Private Custom GPT Action API
$env:DESIGN_FLOW_PROJECT_ROOT="$HOME\Documents\DesignFlowProjects"
$env:DESIGN_FLOW_API_KEY="replace-with-at-least-32-random-characters"
.\.venv\Scripts\python.exe -m design_flow_action_apiThe local API is available at http://127.0.0.1:8080/docs. A Custom GPT requires deploying the included Dockerfile behind HTTPS and configuring the X-API-Key Action credential. Project paths remain hidden behind stable opaque IDs.
Supply the API key only through environment or hosting secret management. Do not put secrets in project files or the Docker build context. The REST boundary returns stable sanitized errors and never intentionally exposes physical server paths.
Documents
Available Tools
17 toolscompile_context_handoffARead-onlyIdempotent
Read-only. Compile Context Handoff content with the engine compiler. Requires an active project and cannot rewrite semantic state.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds value by specifying a prerequisite (active project) and a finer-grained guarantee ('cannot rewrite semantic state') that goes beyond the annotations. No contradiction exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence beginning with 'Read-only,' followed by the action and constraints. It is concise, though 'Read-only' and 'cannot rewrite semantic state' are slightly redundant, preventing a perfect score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a no-parameter read-only tool with an output schema and strong annotations, the description provides the key prerequisite (active project) and a meaningful behavioral constraint. It does not explain what 'Context Handoff content' or 'engine compiler' mean, but the output schema and simple invocation surface keep this gap minor.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and 100% schema description coverage, so there is nothing for the description to explain about arguments. The baseline for zero-parameter tools is 4, and the description does not introduce any parameter-related confusion.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action (compile), a specific resource (Context Handoff content), and a mechanism (engine compiler). It also signals read-only behavior. However, it does not explicitly differentiate itself from the sibling tool compile_living_document, though the resource name provides some implicit distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is for compiling Context Handoff content and explicitly notes that an active project is required. It does not name alternatives or provide when-not-to-use guidance, so an agent must infer when this tool is preferred over similar siblings like compile_living_document or preview_round.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compile_living_documentARead-onlyIdempotent
Read-only. Compile the Living Application Document with the engine renderer. Requires an active project and cannot rewrite semantic state.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds value beyond those by stating 'Read-only', specifying the engine renderer, requiring an active project, and explicitly noting it 'cannot rewrite semantic state' — useful behavioral context not present in the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. The read-only caveat is front-loaded, followed by the action, prerequisite, and a safety constraint — every element earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no parameters, an existing output schema, and annotations already covering read-only, idempotent, and destructive behavior, the description supplies the remaining necessary context: the active-project requirement and the semantic-state guarantee. Nothing critical is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there is nothing for the description to document beyond what the empty schema already shows. The 0-parameter baseline of 4 applies here because no parameter guidance is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Compile'), a specific resource ('Living Application Document'), and a mechanism ('engine renderer'), and opens with 'Read-only' to clarify scope. This clearly distinguishes it from siblings like compile_context_handoff and preview_round without needing to inspect schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear prerequisite ('Requires an active project') and indicates the operation is read-only, which gives useful context. However, it does not explicitly mention when to prefer this tool over alternatives such as compile_context_handoff or preview_round, nor does it state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
end_sessionA
Mutating session operation. End the active Design Flow session safely through the engine. It does not mark the project complete or commit a draft.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false, so the description's 'Mutating session operation' is consistent. It adds value by explicitly stating what the operation does NOT do: 'It does not mark the project complete or commit a draft.' This clarifies side effects beyond the annotation metadata.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded with its mutating nature, followed by a concrete action and clarifying non-effects. 'Safely through the engine' is slightly vague but does not undermine clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter mutating operation with output schema and annotations provided, the description is largely complete. It explains the core action and important non-effects. It does not mention whether the session can be resumed later, but this is not essential for basic invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema coverage is effectively 100%, so there is no parameter documentation burden. The description appropriately focuses on behavior rather than inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the operation: 'End the active Design Flow session safely through the engine.' It identifies a specific verb and resource, and clarifies it is a mutating session operation. It does not explicitly distinguish itself from sibling tools, but the purpose is unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when ending an active Design Flow session, but it gives no explicit guidance on when to use this tool versus alternatives like resume_project, new_project, or lock_round. There is no scenario-based direction or exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_conceptsBRead-onlyIdempotent
Read-only. Return concise current, affected, and historical engine concepts. It exposes no mutation capability.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds 'concise' regarding response nature and mentions no mutation capability, but the latter is redundant with the annotations and adds limited additional behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is brief and front-loaded with the read-only nature and the core action. The phrase 'It exposes no mutation capability' is somewhat redundant with 'Read-only', which slightly reduces efficiency, but overall the description is well-sized.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only tool with an output schema, the description is largely sufficient. It identifies the key result categories (current, affected, historical) and safety profile. It could be more complete by stating when to prefer this over sibling read tools, but the simplicity of the tool lowers that burden.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, and schema description coverage is 100% (empty schema), so the description carries no obligation to explain parameters. The baseline of 4 applies here since the tool has no parameters to document.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns concise current, affected, and historical engine concepts, which is a specific verb and resource. It does not explicitly differentiate itself from siblings like get_state or get_round, so it falls short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives such as get_state, get_round, or get_unresolved. It only states what the tool does, not the conditions or context that should lead an agent to choose it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_decision_ledgerBRead-onlyIdempotent
Read-only. Return a concise engine decision-ledger view. It exposes no mutation capability.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, and destructiveHint, so the description's read-only and no-mutation statements add little new safety information. The added 'concise view' wording gives a mild output-behavior hint, but no deeper context such as permissions, data scope, or freshness.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is brief and front-loaded with the read-only nature and the return object. The phrase 'It exposes no mutation capability' is somewhat redundant with 'Read-only', but the overall structure is clean and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-argument read-only tool with a known output schema and strong annotations, the description is nearly complete. The main missing piece is how this tool relates to sibling read-oriented tools, which is already reflected in the usage_guidelines score.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there is no parameter semantics for the description to clarify. Baseline 4 applies for a no-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Return'), a resource ('engine decision-ledger view'), and an output quality ('concise'). It is clear about what the tool does, though it does not differentiate itself from sibling getters like get_trace or get_state.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description only notes that the tool is read-only and has no mutation capability. It gives no guidance about when to use this tool versus sibling tools such as get_state, get_trace, or get_round. An agent must infer the usage context from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_roundARead-onlyIdempotent
Read-only. Return the active draft summary and latest committed round. Requires an active project and cannot edit either record.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds the useful prerequisite that an active project must exist, and clarifies the two distinct records returned (draft summary and committed round). No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. 'Read-only' is front-loaded, and every clause contributes either to scope, prerequisites, or non-mutating behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless tool with an output schema and strong annotations, the description is complete. It specifies the prerequisite, the exact data returned, and the fact that no editing occurs. An agent has everything it needs to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so there is no parameter-semantic burden on the description. The schema has no properties, and the description adds no parameter details, but none are needed. A baseline of 4 is appropriate for a parameterless tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Return') and a specific resource ('active draft summary and latest committed round'). It clearly distinguishes itself as a read-only retrieval tool from siblings like lock_round, and the 'cannot edit' statement reinforces its non-mutating purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It clearly states the prerequisite context: 'Requires an active project.' It does not explicitly name alternative tools or when-not-to-use conditions, but the read-only framing and the specific return values make its appropriate context reasonably clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_session_briefARead-onlyIdempotent
Read-only. Return the engine session brief and semantic session identity. It does not conflate the MCP connection with the Design Flow session.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description's 'Read-only' adds no new safety information. However, it does add useful behavioral context about what the session brief contains and the distinction between MCP connection and Design Flow session, which is beyond the structured annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences with no filler. The read-only nature is front-loaded, the return content is stated, and the clarifying exclusion is concise and meaningful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless, read-only, idempotent tool with an output schema and complete annotations, the description covers all necessary context. The only additional nuance it might include is naming sibling alternatives, but the clarity of the purpose makes that unnecessary for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so parameter semantics are trivially satisfied. The description correctly focuses on return semantics rather than inputs, which is appropriate for a parameterless tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Return') and resource ('engine session brief and semantic session identity'), and explicitly distinguishes itself from conflating the MCP connection with the Design Flow session. This makes its scope clear even among many sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description conveys when this tool is appropriate: when the agent needs the session brief and semantic session identity. It also provides a negative constraint by clarifying that MCP connection details are not the same as the Design Flow session, though it does not explicitly name sibling alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_stateARead-onlyIdempotent
Read-only. Return concise state compiled by Design Flow. Requires an active project and cannot alter decisions, TRACE, or persistence.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish read-only and non-destructive behavior. The description adds meaningful context by specifying that the state is 'compiled by Design Flow,' is concise, requires an active project, and cannot alter decisions, TRACE, or persistence. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single front-loaded sentence with no filler. It states read-only nature, the resource, the main precondition, and a safety guarantee without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With zero parameters and an output schema present, the description only needed to cover usage context and behavioral constraints, which it does. The active-project prerequisite and non-mutating guarantee complete the picture for safe invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and schema coverage is complete, so there are no parameter semantics the description needs to clarify. The baseline of 4 is appropriate for a zero-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies a clear verb and resource: 'Return concise state compiled by Design Flow.' It distinguishes this from generic mutators and implies an aggregate view, but it does not explicitly contrast with sibling getters like get_session_brief or get_trace.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides a clear precondition ('Requires an active project') and implies use when a concise, read-only overall state is needed. However, it does not name alternative tools for related needs or give when-not-to-use guidance, leaving sibling selection somewhat to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_traceARead-onlyIdempotent
Read-only. Return engine-owned TRACE records. No tool can append, edit, or delete TRACE directly.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds useful context beyond that: TRACE records are engine-owned and no tool can modify them directly, clarifying the immutability boundary.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no redundant wording. The read-only nature is front-loaded, and the immutability statement earns its place by adding meaningful constraint information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only tool with an output schema and relevant annotations, this description is complete enough. The main potential gap is defining 'TRACE', but the resource name and context make it sufficiently identifiable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, and schema description coverage is 100%. No parameter documentation is needed in the description, so the baseline of 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Return') and the specific resource ('engine-owned TRACE records'). It also distinguishes this tool from sibling get_* tools by naming TRACE records as the unique target.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explain when to prefer get_trace over sibling tools like get_state, get_unresolved, or get_round. It only notes that no tool can append/edit/delete TRACE directly, which is a limitation but not a clear usage scenario or alternative-selection rule.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_unresolvedARead-onlyIdempotent
Read-only. Return the engine's canonical unresolved register. Requires an active project and does not reconstruct or change authority.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds valuable behavioral context beyond annotations: it states the tool requires an active project, returns the canonical register, and explicitly does not reconstruct or change authority.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. The key facts are front-loaded ('Read-only. Return...') and the additional constraints ('Requires an active project', 'does not reconstruct or change authority') each add distinct value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless, read-only tool with a provided output schema and strong annotations, the description is complete. It covers the essential precondition, the exact resource returned, and the critical negative behavior (does not change authority).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the schema is trivially complete with 100% coverage. The description does not need to add parameter-level meaning, and the baseline of 4 applies for parameterless tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Return') and a specific resource ('the engine's canonical unresolved register'), making the tool's purpose immediately clear. This also distinguishes it from sibling tools like get_state or get_round, which target different resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states a precondition ('Requires an active project'), giving the agent context on when it can be invoked. It does not explicitly name sibling alternatives or exclusion conditions, but the 'canonical' phrasing and 'does not reconstruct' contrast imply when this tool is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
import_draftA
Mutating working-state operation. Import exactly one structured object or allowed-root file through engine draft intake. It does not commit a decision or change semantic authority.
| Name | Required | Description | Default |
|---|---|---|---|
| draft | No | ||
| draft_file_path | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already mark it as mutating and non-destructive. The description adds useful context beyond that: it operates on working state, imports exactly one item, and does not commit a decision or change semantic authority. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two dense sentences with no filler. The key behavioral scope is front-loaded, and every sentence adds meaningful context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given only two optional parameters, existing output schema, and annotations, the description covers the main semantics and exclusions well. The unexplained 'allowed-root' concept and exact input validation behavior are minor gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description compensates by mapping 'structured object' to the draft parameter and 'allowed-root file' to the draft_file_path parameter, also imposing an 'exactly one' constraint. It does not explain allowed-root rules or behavior when both parameters are used.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a precise verb and resource: 'Import exactly one structured object or allowed-root file through engine draft intake.' This clearly distinguishes it from sibling tools that read, lock, compile, or end sessions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'mutating working-state operation' label implies it is for bringing a draft into working state, and the statement that it does not commit a decision helps exclude decision/commit contexts. However, it does not explicitly say when to use this tool vs. alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lock_roundADestructive
Authority-changing operation. This commits owner-approved draft state through the Design Flow semantic engine and changes authoritative project state. Requires a complete valid draft; failures preserve it.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already signal destructive and non-idempotent behavior, and the description adds meaningful context beyond that: it explains that the operation goes through the Design Flow semantic engine, changes authoritative state, and that failures preserve the draft. This is useful behavioral detail not present in the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded with the most important trait, 'Authority-changing operation.' Each sentence earns its place: classification, mechanism, and failure behavior are all covered without redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters and an existing output schema, the description covers the essential context: what the operation does, what it requires, and what happens on failure. The destructive annotation is present, and the description aligns with it. Nothing critical is missing for an agent to invoke this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the description carries no parameter burden. The schema is trivially complete at 100% coverage, and the description appropriately focuses on operation semantics rather than parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies a specific operation: committing owner-approved draft state and changing authoritative project state. It distinguishes itself from read-only siblings like get_state or preview_round through the 'Authority-changing operation' framing, though it does not explicitly name a sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states a clear precondition: 'Requires a complete valid draft.' This implies the tool should be used when an approved draft is ready to be made authoritative. However, it provides no explicit when-not-to-use guidance or named alternatives, leaving some inference to the agent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
new_projectB
Mutating setup operation. Create a project through the engine and start its Design Flow session. It invents no decisions and creates no decision authority.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | DISCOVERY | |
| project_id | No | ||
| description | No | ||
| project_name | Yes | ||
| project_path | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false, but the description adds meaningful behavioral context: it is a mutating setup operation, it starts a session, and it creates no decision authority. This goes beyond the structured annotations and clarifies side-effect scope, though it does not discuss prerequisites, permissions, or failure behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: it opens with the operation category, states the concrete action, and closes with a non-obvious scope boundary about decisions and authority. Every sentence contributes distinct information with no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema and annotations, the description covers the core purpose and behavioral boundary well. However, with five parameters and zero schema descriptions, the lack of parameter guidance and absence of usage differentiation leaves notable gaps for an agent deciding how to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 parameter-specific explanation. It does not clarify project_name, project_path, mode, project_id, or description beyond what the schema's property names already suggest, so it adds no meaningful parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as a 'Mutating setup operation' that creates a project and starts its Design Flow session, giving a specific verb and resource. It also distinguishes the tool from decision-making siblings by stating it 'invents no decisions and creates no decision authority,' though it does not explicitly contrast with related tools like resume_project or import_draft.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for new project setup and starting a session, but it does not explicitly say when to use it over resume_project, import_draft, or other sibling alternatives. There is clear contextual framing but no direct when/when-not guidance or named exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
preview_roundARead-onlyIdempotent
Read-only simulation. This is non-authoritative and does not commit any decision. Requires an active draft and uses the engine preview path only.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive hints. The description adds valuable context beyond annotations: it is non-authoritative, does not commit any decision, requires an active draft, and uses the engine preview path only. This meaningfully discloses behavior and prerequisites.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the most critical trait ('Read-only simulation'). Every sentence contributes distinct information with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With zero parameters, an output schema present, and annotations covering safety, the description fully contextualizes the tool. It adds the essential prerequisite (active draft) and clarifies the non-committal nature, leaving nothing critical missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there is no parameter meaning to add. Per baseline, a 4 is appropriate because no semantic gaps exist for the agent to worry about.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb and resource: 'Read-only simulation' for previewing a round. Also clarifies it is non-authoritative and 'does not commit any decision', distinguishing it from committing tools like lock_round.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly indicates this is for non-committal simulation and requires an active draft, giving an agent a clear condition for use. It does not explicitly name an alternative tool for when a commit is desired, but the 'does not commit' phrasing provides a strong implicit exclusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
readinessARead-onlyIdempotent
Read-only. Report adapter/engine versions, root confinement, and active-project status. Changes no semantic authority.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds useful behavioral context by specifying exactly what is reported and stating that it changes no semantic authority, which reinforces the non-mutating nature without contradicting the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences with no filler. The read-only and non-mutating nature is front-loaded, followed by a precise list of reported items.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only status tool with an output schema present, the description fully covers what the agent needs to know: the tool is safe, non-mutating, and reports specific readiness-related data. No critical gaps remain.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so there are no parameter semantics to clarify. With 0 params, the baseline is 4, and the description appropriately focuses on the returned status information rather than parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb (Report) and names concrete resources: adapter/engine versions, root confinement, and active-project status. This clearly differentiates it from sibling get-style tools like get_state and get_session_brief, which focus on session details rather than environment readiness.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The tool's use case is implied: it is a read-only readiness/status check. However, there is no explicit guidance on when to use it versus siblings like get_state or get_session_brief, and no alternative is named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recommend_next_roundARead-onlyIdempotent
Read-only advisory operation. Return the engine's bounded recommendation. It is non-authoritative and never starts a round.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey read-only, idempotent, and non-destructive behavior. The description adds meaningful behavioral context beyond that: the recommendation is bounded, non-authoritative, and never starts a round. This provides useful nuance without contradicting the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short, focused sentences with the key qualifier 'read-only advisory operation' front-loaded. Every sentence adds distinct value and there is no redundant filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, read-only advisory tool with an output schema and safety-related annotations, the description covers all essential behavioral information. Nothing else is needed for a correct call.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool accepts zero parameters, and schema description coverage is 100%, so there is no parameter ambiguity. The description appropriately focuses on behavior rather than parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the exact operation: returning the engine's bounded, non-authoritative recommendation. It also clarifies that the tool never starts a round, which helps separate it from state-changing siblings. It does not explicitly name alternative siblings, so it stops short of a perfect 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool: when a read-only advisory recommendation is needed. It does not explicitly state when to prefer alternatives such as preview_round, get_round, or readiness, so the usage guidance is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resume_projectA
Mutating session operation. Validate and open an existing engine project, then resume/start its Design Flow session. It never repairs invalid persisted state.
| Name | Required | Description | Default |
|---|---|---|---|
| project_path | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false and destructiveHint=false, and the description aligns with those by calling the operation mutating. It adds meaningful behavioral context beyond the annotations by stating that the tool 'never repairs invalid persisted state,' which is an important limitation an agent should know before invoking it.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The mutating/non-read-only nature is front-loaded, the core action is stated clearly, and the important caveat about not repairing invalid persisted state earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has only one parameter, an output schema, and annotations covering safety hints, the description covers the essential behavior: mutating, resuming an existing project session, and not repairing invalid state. It does not detail what happens when validation fails, but the output schema likely captures that, so the description is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 for the single project_path parameter. It does clarify that the path must reference an existing engine project, but it does not add details about expected path format, validation behavior, or error conditions. This is minimal but adequate for a single-parameter tool.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('resume/start'), a specific resource ('Design Flow session'), and the prerequisite ('existing engine project'). It also identifies the operation as mutating, which distinguishes it from the read-oriented sibling tools like get_state and get_trace.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for resuming an existing project rather than creating a new one, but it does not explicitly name alternatives such as new_project or state when this tool should not be used. The phrase 'existing engine project' gives clear context, yet no explicit when-not guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
17 tool updates
v0.1.0- First observed
compile_context_handoff - First observed
compile_living_document - First observed
end_session - First observed
get_concepts - First observed
get_decision_ledger - First observed
get_round - First observed
get_session_brief - First observed
get_state - First observed
get_trace - First observed
get_unresolved - First observed
import_draft - First observed
lock_round - First observed
new_project - First observed
preview_round - First observed
readiness - First observed
recommend_next_round - First observed
resume_project
TDQS
Scored across 17 tools
Most tools target clearly distinct resources: sessions, drafts, rounds, trace, decisions, concepts, and compiled documents. The main ambiguity is among the many read-only 'get' tools, especially get_state, get_round, and get_session_brief, though their descriptions do provide enough separation for a careful agent.
The overwhelming majority follow a clear verb_noun pattern such as new_project, resume_project, import_draft, lock_round, and get_trace. 'readiness' is a notable outlier since it is a noun rather than a verb-led command, and get_unresolved is slightly elliptical, but the overall convention is predictable.
At 17 tools, the server is slightly above the ideal 3-15 range but still reasonably scoped for a workflow engine with distinct lifecycle, draft, review, and introspection concerns. A few of the read-only getters could potentially be consolidated, but none feel redundant.
The core Design Flow lifecycle is well covered: project creation/resume/session end, draft import, preview, round locking, recommendations, and multiple read-only views. Obvious gaps include the lack of any explicit discard/abort/cancel operation or project listing/deletion, but the primary workflow appears navigable without dead ends.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceThis MCP server enables AI agents to understand and analyze electrical schematics from Cadence and Altium for comprehensive design reviews through natural conversations.14037Apache 2.0
- AlicenseNot gradedqualityDmaintenanceMCP server for creating, modifying, and analyzing KiCAD schematic files using natural language.20MIT
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol (MCP) server that exposes KiCad PCB design automation tools to AI assistants and other MCP clients.-
- FlicenseNot gradedqualityAmaintenanceAn MCP server that gives an AI agent read and write access to a live SysML v2 model through the vendor-neutral OMG SysML v2 REST API.2-