← Agent Collaboration MCP Server
3.4.2npm · agent-collaboration-mcp · current release
Observed 2026-08-14T18:33:29.481Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"tools": {
"listChanged": true
}
}| Tool | Category | Annotations | Risk |
|---|---|---|---|
capture_screenCapture screen content from a tmux targetInput schema{
"type": "object",
"properties": {
"target": {
"type": "string",
"description": "tmux target in format \"session:window.pane\" (e.g., \"multiagent:0.5\")"
},
"lines": {
"type": "number",
"description": "Number of lines to capture (default: all history)"
}
},
"required": [
"target"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
get_agent_statusGet status of agentsInput schema{
"type": "object",
"properties": {
"target": {
"type": "string",
"description": "tmux target in format \"session:window.pane\" (e.g., \"multiagent:0.5\") or \"session:*\" for all panes in session"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
get_parallel_statusGet status of parallel implementation sessionsInput schema{
"type": "object",
"properties": {
"sessionId": {
"type": "string",
"description": "Session ID (omit to list all sessions)"
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
parallel_implementStart parallel implementation with multiple workersInput schema{
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "Implementation instructions"
},
"workerCount": {
"type": "number",
"default": 3,
"description": "Number of workers (default: 3)"
},
"complexity": {
"type": "string",
"enum": [
"simple",
"medium",
"complex"
],
"default": "medium",
"description": "Task complexity"
},
"autoMerge": {
"type": "boolean",
"default": false,
"description": "Auto-merge after completion"
},
"agentType": {
"type": "string",
"enum": [
"claude",
"gemini"
],
"default": "claude",
"description": "Agent type to use"
}
},
"required": [
"prompt"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
send_messageSend a message to a tmux target. Control characters supported: C-c (stop), C-l (clear), etc.Input schema{
"type": "object",
"properties": {
"target": {
"type": "string",
"description": "tmux target in format \"session:window.pane\" (e.g., \"multiagent:0.5\")"
},
"message": {
"type": "string",
"description": "Message to send (use C-c for Ctrl+C, C-l for Ctrl+L, etc.)"
},
"sendEnter": {
"type": "boolean",
"default": true,
"description": "Whether to send Enter after the message"
}
},
"required": [
"target",
"message"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |
start_agentStart an agent in a specific tmux targetInput schema{
"type": "object",
"properties": {
"target": {
"type": "string",
"description": "tmux target in format \"session:window.pane\" (e.g., \"multiagent:0.5\", \"dev:1.3\")"
},
"agentType": {
"type": "string",
"enum": [
"claude",
"gemini"
],
"default": "claude",
"description": "Type of agent to start"
},
"additionalArgs": {
"type": "string",
"description": "Additional arguments for the agent"
}
},
"required": [
"target"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — · — | — |