send-message-to-process
Send a message containing data and optional tags to a specific process on the Flux MCP server for streamlined interaction with the Arweave Operating System.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | ||
processId | Yes | ||
tags | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"data": {
"type": "string"
},
"processId": {
"type": "string"
},
"tags": {
"items": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"processId",
"data"
],
"type": "object"
}