collective

Pack: opencollective · Endpoint: https://gateway.pipeworx.io/opencollective/mcp

Public collective info by slug (name, balance, currency, sponsors).

Parameters

NameTypeRequiredDescription
slugstringyese.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

FieldTypeDescription
idstringCollective ID
slugstringCollective slug identifier
namestringCollective display name
descriptionstringCollective description
balancenumberCurrent balance in cents
currencystringCurrency code (e.g. USD)
websitestringOfficial website URL
twitterstringTwitter handle
imagestringLogo/image URL
backgroundImagestringBackground image URL
statsobject
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.

Regenerated from source · build July 6, 2026