Skip to main content
Glama
Infomaniak

Infomaniak Calendar MCP Server

Official
by Infomaniak

Calendar MCP Server

MCP Server for the Calendar API.

Tools

  1. calendar_list_calendars

    • List all your available calendars

    • Returns: List of calendars (with id and name)

  2. calendar_list_events

    • Search events in your calendar

    • Required inputs:

      • from (string): Start time (eg. 2025-05-28 12:00:00)

      • to (string): End time (eg. 2025-05-28 13:00:00)

    • Optional inputs:

      • calendar_id (string): Calendar identifier (defaults to primary calendar if omitted)

    • Returns: List of events

  3. calendar_create_event

    • Create a event in your calendar

    • Required inputs:

      • title (string): The event title

      • start (string): The event starting date (eg. 2025-05-28 12:00:00)

      • end (string): The event ending date (eg. 2025-05-28 13:00:00)

    • Optional inputs:

      • description (string): Event description

      • attendees (string): JSON array of attendee emails

      • calendar_id (string): Calendar identifier (defaults to primary calendar if omitted)

    • Returns: The created event

Related MCP server: Google Calendar MCP Server

Setup

  1. Create a calendar token linked to your user:

Usage with Claude Desktop

Add the following to your claude_desktop_config.json:

NPX

{
  "mcpServers": {
    "calendar": {
      "command": "npx",
      "args": [
        "-y",
        "@infomaniak/mcp-server-calendar"
      ],
      "env": {
        "CALENDAR_TOKEN": "your-token"
      }
    }
  }
}

docker

{
  "mcpServers": {
    "calendar": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "CALENDAR_TOKEN",
        "infomaniak/mcp-server-calendar"
      ],
      "env": {
        "CALENDAR_TOKEN": "your-token"
      }
    }
  }
}

Environment Variables

  1. CALENDAR_TOKEN: Required. Your calendar token.

Troubleshooting

If you encounter permission errors, verify that:

  1. All required scopes are added to your calendar token

  2. The token is correctly copied to your configuration

Build

Docker build:

docker build -t infomaniak/mcp-server-calendar -f Dockerfile .

License

This MCP server is licensed under the MIT License.

A
license - permissive license
-
quality - not tested
A
maintenance

Maintenance

Maintainers
Response time
5wRelease cycle
9Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.

  • Connects ChatGPT to your Apple Calendar via a local Mac agent + Vercel relay

  • Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.

View all MCP Connectors

Latest Blog Posts

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/Infomaniak/mcp-server-calendar'

If you have feedback or need assistance with the MCP directory API, please join our Discord server