Skip to main content
Glama
unstrike
by unstrike

remediation

Create and update notes on AttackForge vulnerabilities to document fixes and track mitigation work.

Instructions

Manage remediation notes on AttackForge vulnerabilities.

Actions: create_note — POST /vulnerability/:vulnerability_id/remediationNote (requires: vulnerability_id, fields) Key fields: projectId (required), note (required), note_type ("PLAINTEXT" or "RICHTEXT") update_note — PUT /vulnerability/:vulnerability_id/remediationNote/:note_id (requires: vulnerability_id, note_id, fields)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYes
fieldsNo
note_idNo
vulnerability_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

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 carries the full disclosure burden. The POST/PUT endpoints imply write operations, but nothing is said about authentication needs, permissions, whether updates are destructive/overwriting, error behavior, or what is returned — significant gaps 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.

Conciseness4/5

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

Front-loads the tool's purpose in one sentence, then uses a clean per-action breakdown mapping action name to endpoint and required inputs. Slightly verbose indentation but no wasted prose.

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 4-parameter tool with no output schema or annotations, the description covers action routing and required fields adequately, but omits when to choose each action, authentication/permission expectations, and any notion of results — leaving the agent with gaps for correct invocation.

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?

With 0% schema description coverage, the description compensates well: it names vulnerability_id, note_id, and fields per action, and spells out key fields for create_note (projectId and note required; note_type values 'PLAINTEXT'/'RICHTEXT'). Only the accepted values of the free-form `action` string and the full updatable field set are left implicit.

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?

States a specific verb+resource ('Manage remediation notes on AttackForge vulnerabilities') and enumerates exactly two operations with their REST endpoints. An agent can tell this handles remediation notes rather than the broader sibling categories (vulnerabilities, projects), though it doesn't explicitly position itself against those siblings.

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?

Enumerating the two actions (create_note, update_note) with their required parameters implies when each applies, but there is no explicit when-to-use/when-not guidance or routing to alternatives such as a generic raw_request sibling. Usage must be inferred from the required-parameter annotations.

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