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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Search text, e.g. “Nantes”, “festival jazz”, “musée”. |
official_only | boolean | no | If true, only official (verified) agendas. |
size | number | no | How 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.