Dart MCP Server

dart-package

Input Schema

NameRequiredDescriptionDefault
argsNoArguments for the pub subcommand
commandYesPub subcommand to execute
workingDirNoWorking directory for the command

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "args": { "description": "Arguments for the pub subcommand", "items": { "type": "string" }, "type": "array" }, "command": { "description": "Pub subcommand to execute", "enum": [ "get", "upgrade", "outdated", "add", "remove", "publish", "deps", "downgrade", "cache", "run", "global" ], "type": "string" }, "workingDir": { "description": "Working directory for the command", "type": "string" } }, "required": [ "command" ], "type": "object" }