search_agendas

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

Find OpenAgenda agendas (event calendars) by keyword — e.g. a city, venue, festival or organisation name. Returns agenda uid + slug + title. Pass the uid to the events tool. Most agendas are French.

Parameters

NameTypeRequiredDescription
querystringyesSearch text, e.g. “Nantes”, “festival jazz”, “musée”.
official_onlybooleannoIf true, only official (verified) agendas.
sizenumbernoHow many agendas to return (1-20, default 10).

Example call

Arguments

{
  "query": "Nantes"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_agendas', {
  "query": "Nantes"
});

More examples

{
  "query": "festival jazz",
  "official_only": true,
  "size": 5
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 7, 2026