events

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

Events for a collective.

Parameters

NameTypeRequiredDescription
slugstringyes

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":"events","arguments":{"slug":"babel"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('events', {
  "slug": "babel"
});

Response shape

Always returns: items, count

FieldTypeDescription
itemsarray
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Event ID"
          },
          "slug": {
            "type": "string",
            "description": "Event slug"
          },
          "name": {
            "type": "string",
            "description": "Event name"
          },
          "description": {
            "type": "string",
            "description": "Event description"
          },
          "startsAt": {
            "type": "string",
            "description": "Event start date (ISO 8601)"
          },
          "endsAt": {
            "type": "string",
            "description": "Event end date (ISO 8601)"
          },
          "timezone": {
            "type": "string",
            "description": "Event timezone"
          },
          "location": {
            "type": "string",
            "description": "Event location"
          },
          "image": {
            "type": "string",
            "description": "Event image URL"
          },
          "url": {
            "type": "string",
            "description": "Event page URL"
          },
          "attendees": {
            "type": "number",
            "description": "Number of attendees"
          }
        }
      }
    },
    "count": {
      "type": "integer",
      "description": "Number of items returned."
    }
  },
  "required": [
    "items",
    "count"
  ]
}

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