@access-mcp/events
v0.5.0
Published
ACCESS-CI Events MCP Server - Get information about workshops, webinars, and training events
Downloads
217
Maintainers
Readme
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:
| Parameter | Type | Description |
|-----------|------|-------------|
| query | string | Search titles, descriptions, speakers, tags |
| type | string | Filter: workshop, webinar, training |
| tags | string | Filter: python, gpu, hpc, ml |
| date | enum | Quick date filter: today, upcoming, past, this_week, this_month |
| start_date | string | Start date (YYYY-MM-DD or relative like -6month). Overrides date. |
| end_date | string | End date (YYYY-MM-DD or relative like +3month). Overrides date. |
| skill | enum | Skill level: beginner, intermediate, advanced |
| has_video | boolean | Filter to events with recorded video (implies past events) |
| limit | number | Max results (default: 50) |
Examples:
// 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
npm install -g @access-mcp/eventsConfiguration
{
"mcpServers": {
"access-events": {
"command": "npx",
"args": ["@access-mcp/events"]
}
}
}Resources
accessci://events- All events dataaccessci://events/upcoming- Upcoming eventsaccessci://events/workshops- Workshop eventsaccessci://events/webinars- Webinar events
