load-blueprint
Load and process blueprints from a specified URL and process ID using Flux, an AI-powered MCP server, to automate workflows with Arweave Operating System.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| processId | Yes | ||
| url | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"processId": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"url",
"processId"
],
"type": "object"
}