eventor-mcp-server

grapatin/eventor-mcp-server

3.2

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

Eventor API Client is a Python client designed to integrate with the Eventor orienteering API, providing access to events, entries, and results.

Eventor API Client

A Python client for integrating with the Eventor orienteering API, providing access to events, entries, and results.

Features

  • Access to event results, entries, and organization data
  • Configurable caching system for reduced API calls
  • MCP (Model Context Protocol) server integration for AI assistants
  • Exposes 3 tools for MCP server:
    • get_weekly_club_results() Fetches weekly club results can be used to have the LLM to summarize the results and create a report
    • get_personal_events() Fetches personal events for a given personId (config file) and given period of time
    • get_detailed_result_for_event_and_person() Fetches detailed results for a specific event and personId (config file)
  • It does some parsing and tries to provide the data in a LLM friendly format
  • Debug mode to run the client standalone and generate JSON output for review
  • Configurable API key and personId for secure access

Installation

  1. Clone the repository:
git clone https://github.com/grapatin/eventor-mcp-server.git
cd eventor-mcp-server
  1. Set up a virtual environment:
uv venv .venv
source .venv/bin/activate  # On Windows, use: .venv\Scripts\activate
  1. Install dependencies:
uv pip install -r requirements.txt
  1. Configure your API key:
cp eventor_config_example.py eventor_config.py
# Edit eventor_config.py with your actual API key, personId, and other settings

Usage

To debug just start it in debug mode, it has a main function that will run the function stand alone and produce a json file with the results for review.

python -m eventor

Install MCP server for Claude

Add this to cluade_desktopr_config.json

    "Eventor Results API": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/eventor-mcp-server",
        "run",
        "mcp",
        "run",
        "mcp_server.py"
      ]
    }

Configuration

Configuration is done via the eventor_config.py file. This file contains sensitive information and is excluded from version control via .gitignore. Add both eventor private key (talk to org eventor admin) and your own private personId. (can be found in out put json file)

License