Sessionize MCP Server
Offers a command-line interface to call the MCP server's search tool via HTTP requests, useful for testing or scripting.
Can be configured as an MCP server in VS Code/GitHub Copilot to enable searching Sessionize sessions from the development environment.
Provides a tool to search for sessions by date in a Sessionize event, enabling AI agents to look up speaker and talk information.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Sessionize MCP Serverfind speakers and talks for May 2025"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sessionize MCP Server
A Model Context Protocol (MCP) server that exposes Sessionize session data as a tool. It allows AI agents and LLM clients to search for speakers and talks by date.
Tools
Tool | Description |
| Search for sessions by month in |
Related MCP server: Google Calendar MCP Server
Configuration
The server is configured via environment variables:
Variable | Description | Required |
| Sessionize API endpoint URL | Yes |
| Category ID used to filter sessions by date | Yes |
Running Locally
With Python
pip install -r requirements.txt
SESSIONIZE_URL="https://sessionize.com/api/v2/<your-id>/view/Sessions" \
SESSIONIZE_DATE_FILTER_CATEGORY_ID=61493 \
python src/sessionize_tool.pyWith Podman / Docker
podman build -t sessionize-mcp .
podman run -p 8080:8080 \
-e SESSIONIZE_URL="https://sessionize.com/api/v2/<your-id>/view/Sessions" \
-e SESSIONIZE_DATE_FILTER_CATEGORY_ID=61493 \
sessionize-mcpThe MCP endpoint will be available at http://localhost:8080/mcp.
Client Configuration
VS Code / GitHub Copilot
Add to your .vscode/mcp.json:
{
"servers": {
"sessionize": {
"type": "http",
"url": "http://localhost:8080/mcp"
}
}
}Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"sessionize": {
"url": "http://localhost:8080/mcp"
}
}
}Cursor
Add to your Cursor MCP settings:
{
"mcpServers": {
"sessionize": {
"url": "http://localhost:8080/mcp"
}
}
}Open WebUI
Go to Settings → Tools → Add MCP Server
Set the URL to
http://<host>:8080/mcp
curl
# Initialize session
curl -i -X POST http://localhost:8080/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"curl","version":"1.0"}}}'
# Call the tool (use mcp-session-id from the response headers above)
curl -X POST http://localhost:8080/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-session-id: <session-id>" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_sessionize","arguments":{"date":"April 2025"}}}'This server cannot be deployed
Maintenance
Related MCP Connectors
YouTube transcripts, search, channel/playlist listings and upload tracking for AI agents.
Provides metadata information to AI agents through the search API.
Give AI assistants access to real-time data. Search the web, compare flights, find hotels, and more.
X (Twitter) data for AI agents: tweets, profiles, followers, search, trends + social listening.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides real-time access to the Nerdearla conference agenda, enabling users to query upcoming talks, past sessions, topic recommendations, and event schedules through natural language interactions.712-
- FlicenseDqualityDmaintenanceEnables AI assistants to retrieve and access Google Calendar events by date through the Google Calendar API. Provides a simple tool interface for querying calendar data with date validation and error handling.1-
- AlicenseAqualityCmaintenanceEnables AI assistants to search, filter, and analyze Microsoft events (conferences, workshops, webinars) using the Microsoft Events API.42MIT
- AlicenseNot gradedqualityBmaintenanceExposes the conference schedule as tools for ChatGPT, allowing attendees to view talks and buy tickets through natural language.1MIT