We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/flying3615/eventfinda-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
auth-request.http•1.05 KiB
### Variables - using the same credentials from index.ts
@username = {{EVENTFINDA_USERNAME}}
@password = {{EVENTFINDA_PASSWORD}}
### Example values for testing
@locationId = 2
@startDate = 2025-07-18 00:00:00
@endDate = 2025-07-25 23:59:59
@locationQuery = Auckland
@eventId = 889003
### Get request to Eventfinda API with Basic Authentication
GET https://api.eventfinda.co.nz/v2/events.json
Authorization: Basic {{username}} {{password}}
Accept: application/json
### Get events by location and date
GET https://api.eventfinda.co.nz/v2/events.json?location={{locationId}}&start_date={{startDate}}&end_date={{endDate}}
Authorization: Basic {{username}} {{password}}
Accept: application/json
### Search for locations
GET https://api.eventfinda.co.nz/v2/locations.json?q={{locationQuery}}
Authorization: Basic {{username}} {{password}}
Accept: application/json
### Get specific event details - This endpoint returns complete event details
GET https://api.eventfinda.co.nz/v2/events/{{eventId}}.json
Authorization: Basic {{username}} {{password}}
Accept: application/json