events

Pack: paris-events · Endpoint: https://gateway.pipeworx.io/paris-events/mcp

Find current “things to do” in Paris (Que Faire à Paris, City of Paris official events). Filter by keyword, free admission, and date window. Returns events sorted by start date. Note: titles/descriptions are in French.

Parameters

NameTypeRequiredDescription
querystringnoKeyword (full-text), e.g. “jazz”, “exposition”, “marché”. French terms match best.
free_onlybooleannoIf true, only free events (price_type = gratuit).
fromstringnoInclude events running on/after this date YYYY-MM-DD (default: today). Ongoing/undated events are included.
tostringnoInclude events starting on/before this date YYYY-MM-DD.
limitnumbernoMax events (1-${MAX_LIMIT}, default 20).
offsetnumbernoPagination offset (default 0).

Example call

Arguments

{
  "query": "jazz",
  "free_only": true,
  "from": "2025-01-15",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/paris-events/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"events","arguments":{"query":"jazz","free_only":true,"from":"2025-01-15","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('events', {
  "query": "jazz",
  "free_only": true,
  "from": "2025-01-15",
  "limit": 10
});

More examples

{
  "query": "exposition",
  "from": "2025-01-01",
  "to": "2025-03-31",
  "limit": 20
}

Connect

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

{
  "mcpServers": {
    "paris-events": {
      "url": "https://gateway.pipeworx.io/paris-events/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 6, 2026