collective
Pack: opencollective · Endpoint: https://gateway.pipeworx.io/opencollective/mcp
Public collective info by slug (name, balance, currency, sponsors).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | yes | e.g. “babel”, “webpack”, “preact” |
Example call
Arguments
{
"slug": "babel"
}
curl
curl -X POST https://gateway.pipeworx.io/opencollective/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"collective","arguments":{"slug":"babel"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('collective', {
"slug": "babel"
});
More examples
{
"slug": "webpack"
}
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Collective ID |
slug | string | Collective slug identifier |
name | string | Collective display name |
description | string | Collective description |
balance | number | Current balance in cents |
currency | string | Currency code (e.g. USD) |
website | string | Official website URL |
twitter | string | Twitter handle |
image | string | Logo/image URL |
backgroundImage | string | Background image URL |
stats | object |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Collective ID"
},
"slug": {
"type": "string",
"description": "Collective slug identifier"
},
"name": {
"type": "string",
"description": "Collective display name"
},
"description": {
"type": "string",
"description": "Collective description"
},
"balance": {
"type": "number",
"description": "Current balance in cents"
},
"currency": {
"type": "string",
"description": "Currency code (e.g. USD)"
},
"website": {
"type": "string",
"description": "Official website URL"
},
"twitter": {
"type": "string",
"description": "Twitter handle"
},
"image": {
"type": "string",
"description": "Logo/image URL"
},
"backgroundImage": {
"type": "string",
"description": "Background image URL"
},
"stats": {
"type": "object",
"properties": {
"backers": {
"type": "number",
"description": "Number of backers"
},
"sponsors": {
"type": "number",
"description": "Number of sponsors"
},
"contributors": {
"type": "number",
"description": "Number of contributors"
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"opencollective": {
"url": "https://gateway.pipeworx.io/opencollective/mcp"
}
}
}
See Getting Started for client-specific install steps.