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 "Install 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aws-user-group-toolkit/otto-mcp-sessionize'
If you have feedback or need assistance with the MCP directory API, please join our Discord server