Infomaniak Calendar MCP Server
Enables calendar management via Infomaniak's API, allowing users to list calendars, search events, and create events.
README
Calendar MCP Server
MCP Server for the Calendar API.
Tools
-
calendar_list_calendars- List all your available calendars
- Returns: List of calendars (with
idandname)
-
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
-
calendar_create_event- Create a event in your calendar
- Required inputs:
title(string): The event titlestart(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 descriptionattendees(string): JSON array of attendee emailscalendar_id(string): Calendar identifier (defaults to primary calendar if omitted)
- Returns: The created event
Setup
- Create a calendar token linked to your user:
- Visit the API Token page
- Choose "workspace:calendar user_info" scopes
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
CALENDAR_TOKEN: Required. Your calendar token.
Troubleshooting
If you encounter permission errors, verify that:
- All required scopes are added to your calendar token
- 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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.