infomaniak-mcp
Provides tools for interacting with Infomaniak kSuite contacts, calendars, and reminders over the standard CalDAV and CardDAV endpoints.
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., "@infomaniak-mcpshow my upcoming calendar events"
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.
infomaniak-mcp
An MCP server and CLI for Infomaniak kSuite contacts, calendars and reminders, over the standard CalDAV and CardDAV endpoints.
No third party dependencies. It runs on the Python that ships with macOS and most Linux distributions, 3.9 or newer, so there is nothing to install.
What kSuite is
kSuite is Infomaniak's collaborative suite: mail, calendars and contacts, plus kDrive for files, kChat and kMeet. Infomaniak is a Swiss company that, in its own words, "designs and manages its own data centers in Switzerland" and whose "employees hold the majority of its capital". A free tier for individuals, my kSuite, exists alongside the paid organisation plans.
What matters here is that the suite is built on open protocols rather than a private
API. Contacts and calendars are served over CardDAV and CalDAV at sync.infomaniak.com,
which is what this project speaks. Nothing below depends on a vendor SDK.
Related MCP server: macOS Calendar MCP Server
Why
Infomaniak exposes CalDAV and CardDAV at sync.infomaniak.com, but two details make
it awkward to automate, and both are handled here:
The DAV username is the internal account id such as
AB12345, not the mailbox address, and nothing in the public documentation says so. Worse, the wrong value does not fail cleanly: the server accepts any username at the authentication step and echoes it straight back as the principal path, so a mailbox address signs in successfully and only fails later with a404on a principal that was never real. Credentials shows the screen that prints the id.The CardDAV write path double-encodes some UTF-8, so a contact saved from a phone can be silently corrupted. See Known server defect.
Install
git clone https://github.com/austinpnguyen/infomaniak-mcp
cd infomaniak-mcp
python3 -m unittest discover -s tests # optional, confirms it runs hereThat is the whole install. There is nothing to build and nothing to download.
The macOS system interpreter at /usr/bin/python3 is enough.
Credentials
You need two values. Neither is your normal login password, and neither is your email address, which is the part that trips most people up.
1. The application password
Sign in at manager.infomaniak.com.
Open the account menu at the top right, then My Profile.
In the left sidebar choose Application password(s).
Click Generate an application password, give it a name such as
mcp, and confirm.Use the Copy button in the dialog. Do not select the text by hand: the value is displayed in groups of four characters and a manual selection tends to lose part of it. Spaces are ignored, so
AB12 CD34andABCD1234are the same password.Save it now. The dialog says so and means it: once closed, the value is gone and you have to generate a new one.
Application passwords belong to a single account. If you have more than one Infomaniak
account, check which one you are signed in as before generating, because a password
made in one account returns 401 on another.
Do not confuse it with the other password Infomaniak issues. The same page carries a banner reading If you want to generate a password for your email addresses, use the configuration wizard, and that wizard hands out a mailbox password instead:

The two are not interchangeable. Measured on one account, each password is accepted by exactly one service:
Password | CardDAV and CalDAV | IMAP |
Application password, from the page above | works | rejected |
Mailbox password, from the wizard |
| works |
This server speaks CardDAV and CalDAV only, so the application password is the one you want. The wizard matters only if you are also setting up a mail client.
2. The account id
This is the DAV username, an internal identifier such as AB12345. It is not your
mailbox address. Nothing in the interface labels it "your username", but the
synchronisation help screen prints it in full.
Open ksuite.infomaniak.com and go to Contacts.
In the left sidebar click Synchronise your contacts on all your devices.
Choose any device, pick My Contacts & Calendars, then open the Manual synchronization tab.

The same panel confirms the other two settings: the server is
https://sync.infomaniak.com/, and the password is an account password rather than
anything generated on that screen.
One caveat, measured rather than assumed. The panel offers the username in two forms,
AB12345@sync.infomaniak.com and a bare AB12345. Paired with an application password,
only the bare form authenticates; the suffixed form answers 401. Use the bare id.
If you would rather not click through the interface, the profile that the Automatic synchronization tab downloads is plain XML and carries the same value:
grep -A1 CardDAVUsername ~/Downloads/*.mobileconfigPutting them together
export INFOMANIAK_USER=AB12345 # the account id from step 2
export INFOMANIAK_APP_PASSWORD=xxxxxxxxxxxx # the password from step 1Check the pair before going further:
PYTHONPATH=src python3 -m infomaniak_mcp.cli collectionsThat prints every address book and calendar the account can reach. If it fails instead, the cause is almost always one of these:
Symptom | Cause |
|
|
| The password was generated in a different Infomaniak account. Each account needs its own |
| Part of the value was lost selecting it by hand. Generate a new one and use the Copy button |
Note that a wrong username does not produce a 401. Only a wrong password does. That
is why the error above names the principal rather than talking about credentials.
Optional settings
export INFOMANIAK_DAV_URL=https://sync.infomaniak.com # default
export INFOMANIAK_ADDRESSBOOK="Personal" # default: the first one found
export INFOMANIAK_CALENDAR="Personal" # default: the first one foundRun collections to see the exact names to use for the last two.
Everything else, the principal path and the collection URLs, is discovered at runtime. Nothing about an account is hard coded.
Install into an MCP client
Both clients below run the server as a subprocess and talk to it on stdin and stdout, so the only things they need are a command and the two environment variables.
Replace /path/to/infomaniak-mcp with wherever you cloned this, and AB12345 with
your account id.
Claude Code
claude mcp add infomaniak --scope user \
-e INFOMANIAK_USER=AB12345 \
-e INFOMANIAK_APP_PASSWORD=xxxxxxxxxxxx \
-e PYTHONPATH=/path/to/infomaniak-mcp/src \
-- python3 -m infomaniak_mcp--scope user makes it available in every project. Use --scope project instead to
share it with a repository through a checked in .mcp.json, but do not do that with
credentials written inline, see below.
Check it came up:
claude mcp listIt should print infomaniak: ... - ✓ Connected. To remove it again:
claude mcp remove infomaniak --scope userClaude Desktop
Edit the configuration file, creating it if it does not exist:
Platform | Path |
macOS |
|
Windows |
|
Linux |
|
{
"mcpServers": {
"infomaniak": {
"command": "python3",
"args": ["-m", "infomaniak_mcp"],
"env": {
"PYTHONPATH": "/path/to/infomaniak-mcp/src",
"INFOMANIAK_USER": "AB12345",
"INFOMANIAK_APP_PASSWORD": "xxxxxxxxxxxx"
}
}
}
}Restart Claude Desktop afterwards. The server appears under the tools icon in the message box.
On Windows, use python rather than python3, and write the path with forward
slashes or escaped backslashes.
Keeping the password out of the config
Both methods above put the application password in a file that other tools read, sync and back up. A small launcher avoids that by reading the value at startup instead:
#!/bin/sh
# infomaniak-mcp-launch
SECRETS="$HOME/.config/infomaniak.env" # INFOMANIAK_USER=... and INFOMANIAK_APP_PASSWORD=...
REPO="/path/to/infomaniak-mcp"
[ -r "$SECRETS" ] || { echo "cannot read $SECRETS" >&2; exit 1; }
INFOMANIAK_USER=$(grep '^INFOMANIAK_USER=' "$SECRETS" | cut -d= -f2- | tr -d ' \n')
INFOMANIAK_APP_PASSWORD=$(grep '^INFOMANIAK_APP_PASSWORD=' "$SECRETS" | cut -d= -f2- | tr -d ' \n')
export INFOMANIAK_USER INFOMANIAK_APP_PASSWORD
export PYTHONPATH="$REPO/src"
exec python3 -m infomaniak_mcpchmod 700 ~/bin/infomaniak-mcp-launch
chmod 600 ~/.config/infomaniak.env
claude mcp add infomaniak --scope user -- ~/bin/infomaniak-mcp-launchThe client config then holds a path and nothing else. Because the launcher reads the file itself rather than taking an argument, the password never appears in the process list either. Rotating the password means editing one file, with no client config to update.
Any other client
The server speaks JSON-RPC 2.0 on stdin and stdout. Anything that can run a command and exchange line delimited JSON can drive it:
printf '%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list"}' \
| PYTHONPATH=src python3 -m infomaniak_mcpTools
Tool | What it does |
| Address books and calendars the account can reach |
| Accent insensitive search over name, organisation, note, email, phone |
| Add a contact, verified on write |
| Upcoming events, with a day window |
| Add a timed or all day event |
| Remove an event by resource path |
| Reminders stored as |
| Add a reminder, optionally with a due date |
| Mark a reminder done |
Use as a CLI
export PYTHONPATH=src
python3 -m infomaniak_mcp.cli contacts find "nguyen"
python3 -m infomaniak_mcp.cli contacts add --name "Jane Doe" --phone +15551234567
python3 -m infomaniak_mcp.cli cal list --days 30
python3 -m infomaniak_mcp.cli cal add --title "Dentist" --start "2026-09-05 14:30"
python3 -m infomaniak_mcp.cli todo add --title "Renew passport" --due 2026-10-01
python3 -m infomaniak_mcp.cli todo listKnown server defect
Infomaniak's CardDAV write path reinterprets some valid UTF-8 as ISO-8859-1 and
re-encodes it. Sending the bytes E1 BA A1 for ạ stores C3 A1 C2 BA C2 A1, and one
affected character corrupts every field on the card. Confirmed on two separate
accounts and from a real iPhone, so it is not client specific.
Reads are unaffected. Calendar and task writes are unaffected, verified by round tripping the same characters. Importing through the kSuite web interface is unaffected.
Reported to Infomaniak support in August 2026.
How this library protects you
create_contact writes the card, reads it back, and deletes it and raises if the
stored bytes differ from what was sent. A failed write is far better than a card that
looks saved and is quietly wrong.
There is also carddav_unsafe(text), which flags characters observed to trigger the
defect. Treat it as an early warning only: the list came from sampling ten characters,
so untested codepoints may also be affected. The read back is the guarantee.
double_encoded(text) repairs a mojibake string, and returns None if the text was
already fine. A string is double-encoded exactly when reading its bytes back as
Latin-1 and decoding them as UTF-8 succeeds and changes it, which is the corruption
itself, so it is also the test.
Tests
python3 -m unittest discover -s tests -vThe tests cover the encoding helpers and the vCard and iCalendar builders. They do not touch the network, so they run without credentials. They are also the fastest way to confirm the interpreter on a given machine is new enough.
Notes
Times without an explicit zone are read in the host's local zone. Pass timezone with
an IANA name to override.
Reminders are VTODO components stored on the calendar collection, which is what the
Infomaniak server advertises support for.
Licence
MIT
Available Tools
9 toolscomplete_taskA
Mark a reminder done by its resource path, as returned by list_tasks.
| Name | Required | Description | Default |
|---|---|---|---|
| resource | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden of behavioral disclosure. It conveys a state-changing operation ('mark done') but does not mention idempotency, reversibility, permissions, side effects, or response/error behavior. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence with zero filler. It states the action, the object, and the parameter source without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description captures the core invocation details for a simple one-parameter tool, but it omits any indication of return values or error handling. For a state-changing tool with no output schema, the agent is left to guess what happens after the call.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With schema description coverage at 0%, the description compensates by explaining that the 'resource' parameter is a resource path returned by list_tasks. This gives the agent actionable information beyond the schema's plain 'string' type, though it could specify the path format more precisely.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Mark a reminder done') and a specific resource ('reminder by its resource path'). It also disambiguates from sibling tools by referencing the prerequisite list_tasks, making its role distinct from create_task or delete_event.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'as returned by list_tasks' provides clear context: a caller must first retrieve the resource path from list_tasks before using this tool. While it does not mention exclusions or alternative tools, the prerequisite is explicit and sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_contactA
Add a contact. The write is read back and rolled back if the server altered it, so a success means the stored card matches what was sent.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| note | No | ||
| emails | No | ||
| phones | No | ||
| addressbook | No | ||
| organisation | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It reveals a meaningful behavioral trait: the write is read back and rolled back if altered by the server, so success means the stored card matches what was sent. This goes well beyond a generic 'create' description, though it doesn't cover auth, failure modes, or return value.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences with a clear front-loaded purpose and a valuable behavioral guarantee. Every sentence adds information; no redundancy or bloat.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a simple create operation and gives a meaningful integrity guarantee, but it omits usage routing, parameter semantics, return shape, and error/rollback details beyond the core guarantee. Since there is no output schema or annotations, these gaps leave the agent partially to inference.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description should compensate for the six parameters. It adds only entity-level context ('connect contact') and doesn't explain any field, especially ambiguous ones like 'addressbook' or 'organisation.' The parameter names are somewhat self-explanatory but that is schema value, not description value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Add a contact.' This clearly distinguishes the tool from siblings like create_event, create_task, and search_contacts without requiring the agent to inspect schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no guidance on when to use this tool versus alternatives such as search_contacts or list_collections. There is no mention of prerequisites, when not to use it, or how it relates to other contact-related tools. Usage is only implied by the action word 'Add.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_eventA
Add a calendar event. Give start as 'YYYY-MM-DD HH:MM' for a timed event or 'YYYY-MM-DD' for an all day one.
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | ||
| note | No | ||
| start | Yes | ||
| title | Yes | ||
| all_day | No | ||
| calendar | No | ||
| timezone | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It explicitly signals a mutating operation ('Add') and discloses an important behavior: the start format selects between timed and all-day events. It does not mention interaction with the all_day schema default or return behavior, but the core side effect is clear.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The operation is front-loaded, followed immediately by the most important input formatting rule.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given seven parameters, no annotations, and no output schema, this description is incomplete. It enables a basic call but leaves ambiguity around required title handling, end behavior, all_day interaction, timezone/calendar selection, and what the tool returns.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate, but it only clarifies the start parameter's format. The other six parameters—title, end, note, all_day, calendar, and timezone—receive no semantic guidance, leaving the agent to infer their meaning from names alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb and resource: 'Add a calendar event.' This distinguishes it from sibling tools like create_contact and create_task, and from list_events/delete_event, because it explicitly names the target domain object.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The intended use is implied clearly by 'Add a calendar event,' but the description provides no explicit guidance about when not to use it or which sibling tool to choose instead. There are no exclusion rules or alternative routing hints.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_taskC
Add a reminder, optionally with a due date.
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | 'YYYY-MM-DD' or 'YYYY-MM-DD HH:MM' | |
| note | No | ||
| title | Yes | ||
| calendar | No | ||
| timezone | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral details. 'Add a reminder' implies a mutating creation operation, but it does not explain whether reminders are triggered, whether duplicates can occur, what permissions are needed, or what the response contains.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence with no unnecessary filler. It is front-loaded with the core action, and every word is efficient, though the content is minimal.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With five parameters, low schema coverage, no output schema, and no annotations, the description is far from complete. It omits key behavioral and parameter context that an agent would need to call the tool correctly and interpret the result.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 20%, and the description adds almost no parameter meaning. It only restates that a due date is optional, which is already visible in the schema. title, note, calendar, and timezone remain unexplained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a verb and resource: 'Add a reminder', which suggests creating a task, but it uses 'reminder' rather than 'task', creating ambiguity. It does not clearly distinguish from create_event or other sibling tools beyond the object type.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance about when to use this tool versus alternatives such as create_event or complete_task. The phrase 'optionally with a due date' hints at usage, but no exclusions or conditions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_eventA
Delete a calendar event by its resource path, as returned by list_events.
| Name | Required | Description | Default |
|---|---|---|---|
| resource | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden. While 'Delete' conveys destructiveness, the description does not disclose whether deletion is permanent, whether it affects related resources, what permissions are required, or what response/errors to expect. These are important gaps for a mutation tool without annotation safety signals.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It conveys the action, target, and key parameter provenance efficiently, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, with one required parameter and no output schema or annotations. The description adequately explains the input and its origin, but it omits return behavior, error cases, and permanence of deletion. For a minimal tool this is acceptable, yet not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate for the undocumented 'resource' parameter. It does so meaningfully by explaining that the parameter is a resource path obtained from list_events, clarifying both the value's nature and its source. It stops short of providing format examples, but for a single parameter this is strong compensation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Delete a calendar event'), the target resource, and the required identifier ('resource path'). It clearly differentiates from sibling tools like list_events, create_event, and complete_task by indicating this is the deletion operation for calendar events.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context by noting the resource path comes from list_events, implicitly directing the agent to call list_events first. It does not explicitly mention when not to use the tool or name alternatives, but for a unique delete operation among the given siblings, this level of guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_collectionsA
List the address books and calendars this account can reach. Useful when the account has more than one and you need the exact name.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden. It implies a read-only listing and defines scope, but it does not describe the return shape, empty-result behavior, or any auth considerations. The 'exact name' hint adds some value, but the behavioral context stays thin.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences: the first states the action and resource, the second gives the practical use case. It is front-loaded and contains no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter list tool, the description provides the essential selection and invocation context. A minor gap is the lack of an explicit return format, but 'exact name' strongly implies the useful output field.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and the schema coverage is trivially 100%, so the baseline of 4 applies. The note about needing exact names adds practical context for how results may be used, even though there are no parameters to document.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('List') and specific resources ('address books and calendars'), and clarifies the scope ('this account can reach'). This clearly distinguishes it from the contact, event, and task sibling tools without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly gives a concrete situation for use: when the account has multiple collections and the agent needs the exact name. It does not name exclusions, but the alternatives are different resource types, so confusion is unlikely.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_eventsC
Upcoming calendar events.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | ||
| start | No | YYYY-MM-DD, defaults to today | |
| calendar | No | ||
| timezone | No | IANA name, defaults to the host zone |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. 'Upcoming calendar events' only implies a read-only listing operation; it does not reveal sorting, date range behavior, pagination, or what happens when no events exist. The description does not contradict annotations because none exist, but it adds little behavioral depth.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The three-word description is extremely concise and front-loaded, but it is under-sized for a tool with four parameters and no other documentation. While every word earns its place, the description sacrifices substance for brevity, making it less than 'appropriately sized.'
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 4-parameter tool with no annotations and no output schema, a single noun phrase is insufficient. The description lacks any information about event fields, ordering, timezone handling, or the meaning of the days parameter, leaving an agent to infer most important details from the schema and tool name.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50%, with start and timezone documented in the schema. The description mentions no parameters and does not compensate for the undocumented days and calendar fields. However, the schema already handles half the parameters, making this a borderline case; the description adds no value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Upcoming calendar events' clearly identifies the resource (calendar events) and the scope (upcoming), which distinguishes it from sibling tools like list_tasks and list_collections. However, it is a noun phrase rather than an explicit verb+resource statement, and it does not explicitly differentiate from search_contacts or list_collections, so it falls short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives such as list_tasks or search_contacts. There is no mention of context, exclusions, or conditions that would help an agent choose this tool over its siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tasksD
Reminders and tasks stored as VTODO on the calendar.
| Name | Required | Description | Default |
|---|---|---|---|
| calendar | No | ||
| timezone | No | ||
| include_done | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden, but it only says where tasks are stored. It does not disclose what the tool returns, whether completed tasks are included, ordering, read-only nature, or any other runtime behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and concise, but it is under-specified rather than usefully concise. It does not state the action or behavior the tool performs, so the single sentence does not earn its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The data-model context (VTODO on the calendar) is useful, but it is far from complete. There is no output schema, no annotation, no param semantics, and no differentiation from sibling tools, leaving an agent with critical gaps for invoking this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description provides no parameter semantics. 'calendar', 'timezone', and 'include_done' are left entirely unexplained, so an agent cannot determine valid values or side effects.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Reminders and tasks stored as VTODO on the calendar' describes a data model, not an action. It does not explicitly say the tool lists tasks, so an agent must infer the verb from the tool name. It adds some resource context but is closer to a tautology than a clear purpose statement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to use this tool versus alternatives such as list_events or create_task. The mention of VTODO and calendar suggests a relationship to calendar data, but there are no explicit usage conditions or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_contactsA
Search the address book by name, organisation, note, email or phone digits. Accent insensitive.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | Name fragment or phone digits | |
| addressbook | No | Address book name, optional |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears the full burden of behavioral disclosure. It adds the accent-insensitive behavior and the fields searched, which is useful. However, it does not explicitly state that the operation is read-only, nor does it clarify how limit/addressbook constrain the search or what the response looks like.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One concise sentence, front-loaded with the verb and resource, then the search criteria and a behavioral nuance. No redundant words and easy to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool the description is mostly sufficient, but it leaves gaps: it does not clarify whether addressbook filters to a single book or searches all books, what the limit applies to, or what the return data includes (there is no output schema). With no annotations, these gaps make it only minimally complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema documents query as a name fragment or phone digits, and the description expands this to name, organisation, note, email, and phone digits, plus accent-insensitivity. This adds meaningful detail beyond the schema for the main parameter. The limit and addressbook parameters are not enriched beyond their schema descriptions, so it is not fully complete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (search) and resource (address book), and enumerates the searchable fields: name, organisation, note, email, or phone digits. This clearly distinguishes it from sibling tools like list_collections (listing) and create_contact (writing), so an agent can tell it apart.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear context for when to search contacts, but it gives no explicit when/when-not guidance and does not mention alternatives such as list_collections for browsing collections. The intended use is implied by the verb and resource, not stated directly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct resource and action: collections, contacts, events, and tasks are cleanly separated. There is no meaningful overlap between search_contacts and the calendar/task operations.
All tools follow a consistent verb_noun pattern such as list_events, create_contact, delete_event. The naming is predictable and uniform across the entire surface.
Nine tools is well scoped for a contacts and calendar server. Each tool covers a clear need without unnecessary duplication or bloat.
The domain is covered for basic listing, creating, and in some cases deleting, but notable lifecycle gaps exist: contacts have no update or delete, events have no update, and tasks have no delete. Agents can accomplish core workflows but will hit dead ends when trying to modify existing contacts or rearrange events.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Model Context Protocol server for todo.vu task management and time tracking.
Model Context Protocol server for Studex tools, notifications, and profile integrations
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
A Model Context Protocol (MCP) server for Selise Blocks Cloud integration
Related MCP Servers
- AlicenseDqualityDmaintenanceA Model Context Protocol server that allows users to interact with their CalDAV, CardDAV, and WebDAV services (calendars, contacts, and files) from Fastmail and Apple iCloud accounts.6803MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables direct integration with macOS Calendar application using AppleScript, allowing users to create, list, and search calendar events without requiring OAuth setup.86MIT
- AlicenseNot gradedqualityDmaintenanceEnables CRUD operations for calendar events, journal entries, and todos on any CalDAV server (like Radicale) through the Model Communication Protocol.MIT
- AlicenseNot gradedqualityAmaintenanceProvides native integration with Apple Reminders and Calendar on macOS, enabling full CRUD operations and smart task management through the Model Context Protocol. It allows users to search, create, and organize reminders and calendar events using natural language via the macOS EventKit framework.666194MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/austinpnguyen/infomaniak-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server