UNPKG

@agentics.org/sparc2

Version:

SPARC 2.0 - Autonomous Vector Coding Agent + MCP. SPARC 2.0, vectorized AI code analysis, is an intelligent coding agent framework built to automate and streamline software development. It combines secure execution environments, and version control into

40 lines 981 B
{ name: "mcp", description: "Start a Model Context Protocol (MCP) server", options: [ { name: "port", shortName: "p", description: "Port to run the MCP server on", type: "number", default: 3001, }, { name: "model", description: "Model to use for the agent", type: "string", }, { name: "mode", description: "Execution mode (automatic, semi, manual, custom, interactive)", type: "string", }, { name: "diff-mode", description: "Diff mode (file, function)", type: "string", }, { name: "processing", description: "Processing mode (sequential, parallel, concurrent, swarm)", type: "string", }, { name: "config", shortName: "c", description: "Path to the agent configuration file", type: "string", }, ], action: mcpCommand, },