event

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

Get a single Funcheap event by numeric post id or slug, with full cleaned body text (date/venue/price details live in the text).

Parameters

NameTypeRequiredDescription
idnumbernoNumeric WordPress post id, e.g. 1624543.
slugstringnoPost slug from an event URL, e.g. “fantasia-1940-35mm-live-organ-concert-paramount-theatre-oakland”.

Example call

Arguments

{
  "id": 1624543
}

curl

curl -X POST https://gateway.pipeworx.io/funcheap/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"event","arguments":{"id":1624543}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('event', {
  "id": 1624543
});

More examples

{
  "slug": "fantasia-1940-35mm-live-organ-concert-paramount-theatre-oakland"
}

Connect

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

{
  "mcpServers": {
    "funcheap": {
      "url": "https://gateway.pipeworx.io/funcheap/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 6, 2026