Dart MCP Server

dart-run

Input Schema

NameRequiredDescriptionDefault
argsNoArguments to pass to the script
scriptYesPath to the Dart script to run
workingDirNoWorking directory for the command

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "args": { "description": "Arguments to pass to the script", "items": { "type": "string" }, "type": "array" }, "script": { "description": "Path to the Dart script to run", "type": "string" }, "workingDir": { "description": "Working directory for the command", "type": "string" } }, "required": [ "script" ], "type": "object" }