Skip to content

ACCESS-CI Events MCP Server

MCP server for ACCESS-CI events including workshops, webinars, and training sessions.

Usage Examples

Search & Discovery

"Upcoming ACCESS events"
"Python workshops"
"Machine learning training"
"Office hours this week"

Filtering

"Beginner events this month"
"GPU computing workshops"
"Advanced training sessions"

Tools

search_events

Search and filter ACCESS-CI events.

Returns future events by default. Use date: "past" or start_date/end_date for historical events.

Parameters:

ParameterTypeDescription
querystringSearch titles, descriptions, speakers, tags
typestringFilter: workshop, webinar, training
tagsstringFilter: python, gpu, hpc, ml
dateenumQuick date filter: today, upcoming, past, this_week, this_month
start_datestringStart date (YYYY-MM-DD or relative like -6month). Overrides date.
end_datestringEnd date (YYYY-MM-DD or relative like +3month). Overrides date.
skillenumSkill level: beginner, intermediate, advanced
has_videobooleanFilter to events with recorded video (implies past events)
limitnumberMax results (default: 50)

Examples:

javascript
// Upcoming Python events
search_events({ query: "python", limit: 10 })

// Machine learning workshops this month
search_events({ query: "machine learning", date: "this_month", type: "workshop" })

// Beginner GPU training
search_events({ tags: "gpu", skill: "beginner" })

// Events with video recordings
search_events({ has_video: true, limit: 20 })

// Events in a specific date range
search_events({ start_date: "2025-01-01", end_date: "2025-06-30" })

Installation

bash
npm install -g @access-mcp/events

Configuration

json
{
  "mcpServers": {
    "access-events": {
      "command": "npx",
      "args": ["@access-mcp/events"]
    }
  }
}

Resources

  • accessci://events - All events data
  • accessci://events/upcoming - Upcoming events
  • accessci://events/workshops - Workshop events
  • accessci://events/webinars - Webinar events

Package: @access-mcp/eventsVersion: v0.5.0 Main: dist/index.js