the_committee_convene

Pack: the-committee · Endpoint: https://gateway.pipeworx.io/the-committee/mcp

Convenes five random number generators. Each argues for their number. Democracy determines the result. One member always dissents.

Example call

Arguments

{
  "question": "What is the optimal random number?",
  "urgency": "routine"
}

curl

curl -X POST https://gateway.pipeworx.io/the-committee/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"the_committee_convene","arguments":{"question":"What is the optimal random number?","urgency":"routine"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('the_committee_convene', {
  "question": "What is the optimal random number?",
  "urgency": "routine"
});

More examples

{
  "urgency": "emergency"
}

Response shape

FieldTypeDescription
resultnumberThe number agreed upon by the committee
membersarrayCommittee members and their arguments
dissentobjectThe member who dissented
Full JSON Schema
{
  "type": "object",
  "properties": {
    "result": {
      "type": "number",
      "description": "The number agreed upon by the committee"
    },
    "members": {
      "type": "array",
      "description": "Committee members and their arguments",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Name of the committee member"
          },
          "number": {
            "type": "number",
            "description": "The number proposed by this member"
          },
          "argument": {
            "type": "string",
            "description": "The member's argument for their number"
          }
        }
      }
    },
    "dissent": {
      "type": "object",
      "description": "The member who dissented",
      "properties": {
        "name": {
          "type": "string",
          "description": "Name of the dissenting member"
        },
        "number": {
          "type": "number",
          "description": "The number the dissenter proposed"
        },
        "reason": {
          "type": "string",
          "description": "Reason for dissent"
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "the-committee": {
      "url": "https://gateway.pipeworx.io/the-committee/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026