load-local-blueprint
Upload and validate local blueprintCode with a specified processId to the Flux MCP server, enabling natural language interaction with AO for automated code handling.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| blueprintCode | Yes | ||
| processId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blueprintCode": {
"type": "string"
},
"processId": {
"type": "string"
}
},
"required": [
"blueprintCode",
"processId"
],
"type": "object"
}