proton-calendar-mcp
Allows reading events from a Proton Calendar using a secret ICS share link, with tools to list, search, and get event details.
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., "@proton-calendar-mcplist my events for this week"
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.
proton-calendar-mcp
An MCP server for reading — and eventually modifying — a Proton Calendar.
Architecture
Proton Calendar has no public API and no CalDAV support, and event data is end-to-end encrypted. This server is built in phases:
Phase 1 (working): reads via the calendar's secret ICS share link (Proton Calendar → Settings → Calendars → Share via link, "full view"). The feed is fetched on demand and cached for 60 seconds. Recurring events are expanded into concrete occurrences (RRULE, EXDATE, and overridden instances are honored).
Phase 2 (planned): writes. See DEVELOPMENT.md once started.
Related MCP server: iCloud Calendar MCP
Tools
Tool | Purpose |
| Events in a date range (default: next 7 days) |
| Text search over title/description/location |
| Full details for one event by UID |
Setup
npm install
npm run buildConfigure in your MCP client (e.g. claude_desktop_config.json):
{
"mcpServers": {
"proton-calendar": {
"command": "node",
"args": ["/path/to/proton-mcp/dist/index.js"],
"env": {
"PROTON_ICS_URL": "https://calendar.proton.me/api/calendar/v1/url/..."
}
}
}
}The ICS URL is a secret — anyone holding it can read the calendar. Keep it out of version control.
Development
npm run dev # tsc --watchSmoke test without an MCP client by piping JSON-RPC over stdin:
printf '%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"test","version":"0"}}}' \
'{"jsonrpc":"2.0","method":"notifications/initialized"}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_events","arguments":{}}}' \
| PROTON_ICS_URL="..." node dist/index.jsThis 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/cora-p/proton-calendar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server