share_command
Execute and share command outputs between instances on the Claude IPC MCP server. Facilitates inter-process communication for efficient AI assistant collaboration.
Instructions
Execute a command and share output with another instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to execute | |
description | No | Description of what this command does | |
from_id | Yes | Your instance ID | |
to_id | Yes | Target instance ID |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to execute",
"type": "string"
},
"description": {
"description": "Description of what this command does",
"type": "string"
},
"from_id": {
"description": "Your instance ID",
"type": "string"
},
"to_id": {
"description": "Target instance ID",
"type": "string"
}
},
"required": [
"from_id",
"to_id",
"command"
],
"type": "object"
}