Dart MCP Server

dart-fix

Input Schema

NameRequiredDescriptionDefault
applyNoWhether to apply the suggested fixes
optionsNoAdditional fix options
pathNoDirectory or file to apply fixes to

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "apply": { "default": true, "description": "Whether to apply the suggested fixes", "type": "boolean" }, "options": { "description": "Additional fix options", "items": { "type": "string" }, "type": "array" }, "path": { "description": "Directory or file to apply fixes to", "type": "string" } }, "type": "object" }