the_committee_convene

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/the_committee_convene for the schema, then POST the same URL with its arguments for the data.

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
questionstring
final_numbernumber
vote_resultstring
deliberation_timestring
committeearray
minutesstring
next_meetingstring
Full JSON Schema
{
  "type": "object",
  "properties": {
    "question": {
      "type": "string"
    },
    "final_number": {
      "type": "number"
    },
    "vote_result": {
      "type": "string"
    },
    "deliberation_time": {
      "type": "string"
    },
    "committee": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "member": {
            "type": "string"
          },
          "number": {
            "type": "number"
          },
          "vote": {
            "type": "string"
          },
          "statement": {
            "type": "string"
          }
        }
      }
    },
    "minutes": {
      "type": "string"
    },
    "next_meeting": {
      "type": "string"
    }
  }
}

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 September 23, 2026