Developer resources

MyMeetings Public API

These unauthenticated, read-only endpoints provide current public Alcoholics Anonymous meeting listings. Responses use JSON and may change as source listings are updated.

Meeting details

Retrieve one meeting using its positive numeric MyMeetings ID.

GET https://api.mymeetings.co/api/v1/meetings/4169440

Successful responses include the schedule, meeting formats, location, address, timezone, and online access fields when published.

Nearby meetings

Supply valid decimal coordinates. The endpoint returns up to six current meetings, ordered by distance in miles.

GET https://api.mymeetings.co/api/v1/meetings/closest?latitude=42.35&longitude=-71.05

Meeting ID catalog

Page through meeting IDs using a keyset cursor. The maximum page size is 10,000.

GET https://api.mymeetings.co/api/v1/meetings/ids?after=0&limit=1000

Continue with next_cursor while has_more is true.

Model Context Protocol

Agents can use the stateless Streamable HTTP endpoint at https://mymeetings.co/mcp. It exposes the read-only get_meeting and find_nearby_meetings tools.

Discover configuration through the current Server Card or the compatibility Server Card.

Usage notes