mcp-sessionize

jeanlopezxyz/mcp-sessionize

3.3

If you are the rightful owner of mcp-sessionize and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The Sessionize MCP Server is a Model Context Protocol server designed to access event data from Sessionize-powered conferences, including speakers, sessions, and schedules.

Tools
6
Resources
0
Prompts
0

Sessionize MCP Server

npm

MCP server for accessing Sessionize event data - speakers, sessions, and schedules.

Get Your Event ID

  1. Log in to Sessionize
  2. Select your event → API / Embed → Enable API
  3. Copy your Event ID from the URL: https://sessionize.com/api/v2/{EVENT_ID}/view/All

The SESSIONIZE_EVENT_ID environment variable is used to set the default event. You can also pass eventId directly in tool calls.

Installation

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "sessionize": {
      "command": "npx",
      "args": ["-y", "mcp-sessionize"],
      "env": {
        "SESSIONIZE_EVENT_ID": "your-event-id"
      }
    }
  }
}

Claude Code

claude mcp add sessionize -e SESSIONIZE_EVENT_ID="your-event-id" -- npx -y mcp-sessionize

Cursor / Windsurf / VS Code

EditorConfig File
Cursor~/.cursor/mcp.json
Windsurf~/.codeium/windsurf/mcp_config.json
VS Codecode --add-mcp '{"name":"sessionize","command":"npx","args":["-y","mcp-sessionize"],"env":{"SESSIONIZE_EVENT_ID":"your-event-id"}}'

Docker

docker run -i --rm -e SESSIONIZE_EVENT_ID=your-event-id ghcr.io/jeanlopezxyz/mcp-sessionize

Usage Examples

"Show me all speakers"
"Find speaker John Doe"
"What sessions does Jane Smith have?"
"List all sessions about Kubernetes"
"What's the schedule?"

Tools

ToolDescription
getSpeakersList all speakers
findSpeakerSearch speaker by name
getSessionsList all sessions
findSessionSearch sessions by topic
getScheduleGet event schedule
getSessionsBySpeakerGet sessions by speaker

Prompts

PromptDescription
event_overviewGet conference overview
find_speaker_infoFind speaker details
sessions_by_topicFind sessions on a topic
conference_scheduleGet full schedule
speaker_sessionsList sessions by speaker
recommend_sessionsGet session recommendations

Tech Stack

  • Java 25 + Mandrel 25
  • Quarkus 3.30
  • Quarkus MCP Server 1.8.1

License