Skip to main content
Glama
brovk2008

STM32Cube-MCP

by brovk2008

stm32_remove_project

Remove an STM32 project from a headless Eclipse workspace by specifying its workspace path and project name. Cleans up build workspace for automated STM32CubeIDE workflows.

Instructions

Removes a project from the headless Eclipse workspace.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_nameYes
workspace_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. 'Removes' implies mutation, but the description does not reveal whether the operation is permanent, whether files are deleted from disk or only removed from the workspace, or what side effects may occur on build artifacts.

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

Conciseness5/5

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

The description is a single, front-loaded sentence with no filler. Every word contributes to defining the operation and its scope.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter tool with an output schema, the description is minimally adequate. However, the ambiguity around whether removal deletes files and the absence of usage guidance or behavioral caveats leaves notable gaps for an agent.

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 for undocumented parameters. It only hints at the workspace context and does not explain path formats, naming conventions, or how project_name and workspace_path relate to the removal operation.

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 ('Removes'), a specific resource ('a project'), and a location ('the headless Eclipse workspace'). This clearly distinguishes the tool from siblings like stm32_create_project, stm32_import_project, and stm32_list_projects.

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 intended use is implied by the verb 'Removes' and the workspace context, so an agent can infer when to call it. However, it does not explicitly state prerequisites, exclusions, or alternatives such as create/import versus removal.

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