cronofy
Server Details
MCP server for Cronofy — read calendars, events and free/busy, and create, update or delete events.
Claim cronofy
Claiming proves that you control this connector and unlocks listing details, thumbnails, health checks, and analytics. It does not change or interrupt the running server.
Complete one method below. Compare the methods and read troubleshooting steps.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- m190/usefulapi-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 8 of 8 tools scored.
Each tool targets a distinct resource and action: account details, user info, calendars, profiles, events read/write/delete, and free/busy. No two tools share overlapping purposes.
All tools follow a 'cronofy_verb_noun' pattern, but verbs vary between 'get', 'list', 'read', 'delete', 'upsert'. While clear, the mix of 'get', 'list', and 'read' introduces slight inconsistency.
8 tools is well-scoped for a calendar API server, covering account, profiles, calendars, and event operations without being bloated or sparse.
Core CRUD for events, calendar listing, free/busy, and account info are covered. Missing calendar creation/deletion and event update (separate from upsert) but overall adequate for typical usage.
Available Tools
8 toolscronofy_delete_eventDelete eventADestructiveInspect
Deletes an event (by your event_id) from a real connected calendar. Destructive. API: DELETE /v1/calendars/{calendar_id}/events.
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes | YOUR event_id for the event to delete (sent in the JSON body). | |
| calendar_id | Yes | Calendar id the event lives on. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide destructiveHint=true, and the description reinforces destructive behavior with the explicit word 'Destructive' and adds context that it affects a 'real connected calendar.' It also provides the exact HTTP DELETE API endpoint, giving useful behavioral detail beyond the annotation.
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, focused sentence that front-loads the action and key qualifier, then states destructiveness and the API endpoint. There is no filler or redundant material.
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 two-parameter destructive delete operation with full schema coverage and a destructiveHint annotation, the description provides the necessary behavioral warning and API path. No critical information needed to invoke the tool correctly is missing.
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 100%, so both calendar_id and event_id are already documented. The description adds 'by your event_id' and places the event_id in the JSON body, but this largely restates information already present in the schema rather than adding substantial new meaning.
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?
Description uses a specific verb and resource: 'Deletes an event (by your event_id) from a real connected calendar.' It clearly identifies the action, the target, and an important qualifier ('real connected calendar'), and it is distinct from sibling tools like cronofy_read_events and cronofy_upsert_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 description implies usage for deleting a specific event, but it does not explicitly state when to use this tool versus alternatives such as cronofy_upsert_event for creating or updating events. There is no when-not-to-use guidance or mention of sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cronofy_get_accountGet accountARead-onlyInspect
Get the authenticated Cronofy account's details (id, email, name, default tzid, locale). API: GET /v1/account.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the agent knows this is a safe read operation. The description adds that it targets the authenticated account and lists the fields returned, which is useful but does not go beyond that. It does not mention authentication requirements, rate limits, or response format, though the annotations lower the burden.
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 focused sentence that names the operation, the target, the key returned fields, and the API endpoint. There is no filler or redundancy, and the most important information appears immediately.
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, read-only account metadata lookup, the description is nearly complete: it identifies the resource, the fields returned, and the REST endpoint. It lacks output schema details and error/edge-case information, but the simplicity of the tool and the readOnlyHint annotation make this a minor gap.
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, so the baseline is 4. The description correctly implies no inputs are needed and focuses on the output fields. There is no parameter detail required beyond what the empty schema already communicates.
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 ('Get'), resource ('authenticated Cronofy account's details'), and enumerates the returned fields (id, email, name, default tzid, locale). It is clear and distinct from siblings in practice, though it does not explicitly contrast itself with cronofy_get_userinfo, which could be confused without deeper inspection.
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 the siblings such as cronofy_get_userinfo, cronofy_list_profiles, or cronofy_list_calendars. It only states what the tool does and the API endpoint, leaving the agent to infer usage from the tool name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cronofy_get_free_busyGet free/busyARead-onlyInspect
Read free/busy information across the account's calendars over a time window. Returns { pages, free_busy }. API: GET /v1/free_busy.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | End of the window — date (yyyy-mm-dd) or ISO 8601 datetime. | |
| from | No | Start of the window — date (yyyy-mm-dd) or ISO 8601 datetime. | |
| tzid | Yes | REQUIRED time zone id for the response, e.g. "Etc/UTC". | |
| calendar_ids | No | Restrict to these calendar ids (sent as repeated calendar_ids[] params). | |
| include_managed | No | Include events created via the Cronofy API. Default false. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description aligns with that by saying 'Read' and referencing GET. It adds useful behavioral context beyond annotations: the return shape '{ pages, free_busy }' and the account-wide calendar scope.
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 concise sentences with no filler. The core action is front-loaded, followed by the return shape and API method, 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?
For a read-only tool with 5 fully described parameters and no output schema, the description gives the essential return envelope and scope. However, it does not clarify default window behavior when from/to are omitted, which could matter since only tzid is required.
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 100%, so the baseline is 3. The description's phrase 'over a time window' and 'across the account's calendars' conceptually maps to from/to and calendar_ids, but it does not add parameter-level detail beyond what the schema already provides.
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?
States a specific verb and resource: 'Read free/busy information across the account's calendars over a time window.' This clearly distinguishes it from sibling tools like cronofy_read_events or cronofy_list_calendars because it targets availability data, not event details or calendar metadata.
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?
Provides clear context: this is for free/busy availability across account calendars within a time window. It does not explicitly name alternatives or state when not to use it, but the scope is sufficiently clear that an agent can infer the appropriate situation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cronofy_get_userinfoGet userinfoARead-onlyInspect
Get the OpenID-style profile of the authenticated user (sub, email, Cronofy profile info). API: GET /v1/userinfo.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation already signals a safe read operation, and the description adds useful behavioral context by specifying the OpenID-style profile scope and the GET endpoint. It does not contradict the annotation and gives the agent a clear sense of what kind of data is returned.
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 sentence that states the resource, key fields, and API endpoint with no filler. Every part earns its place and the most important information is front-loaded.
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 parameterless GET operation with a readOnlyHint, the description is complete: it identifies the resource, names the expected fields, and gives the endpoint. No output schema exists, but the description provides enough detail for an agent to understand 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?
The tool has zero parameters, so there is no parameter ambiguity to resolve. The description correctly focuses on the return resource rather than inputs, matching the baseline expected for a parameterless tool.
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 names a specific verb (Get), a clear resource (OpenID-style profile of the authenticated user), and key fields (sub, email). It also includes the exact API endpoint, which removes ambiguity and helps distinguish it from sibling tools like list_profiles.
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 explains what the tool does but gives no guidance about when to use it instead of related siblings such as cronofy_get_account or cronofy_list_profiles. An agent is left to infer the appropriate use case from the resource name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cronofy_list_calendarsList calendarsARead-onlyInspect
List all calendars the authenticated account can see (id, name, profile, readonly, primary). API: GET /v1/calendars.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the description does not need to repeat safety. It does add useful context by stating the scope 'all calendars the authenticated account can see' and the HTTP endpoint GET /v1/calendars. However, it does not disclose pagination, ordering, or potential error behavior, which keeps this at a solid but not exceptional level.
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 short sentences with no filler. The primary purpose and scope are front-loaded, and the API endpoint is a useful one-line addition. Every part earns 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?
For a parameterless read-only listing tool with annotations covering the safety profile, this is complete. The description names the key output fields even though there is no output schema, and the sibling context is clear enough that an agent can correctly invoke it.
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, so the input schema is fully complete (100% coverage) and there is nothing for the description to add. The 0-parameter baseline of 4 applies, and the description appropriately focuses on the result rather than parameters.
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 clearly states the verb 'List' and the resource 'all calendars the authenticated account can see', and enumerates the returned fields (id, name, profile, readonly, primary). This distinguishes it from sibling tools like list_profiles and read_events by explicitly naming the calendar resource.
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 explicit guidance about when to use this tool versus alternatives such as cronofy_list_profiles or cronofy_read_events. While the purpose is clear, there is no when-to-use or when-not-to-use context, and no mention of alternative selection criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cronofy_list_profilesList profilesARead-onlyInspect
List the connected calendar accounts/profiles (e.g. Google, Office 365) linked to this Cronofy account. API: GET /v1/profiles.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, and the description reinforces this with 'List' and 'GET /v1/profiles'. It adds the endpoint detail and confirms this is a read-only operation, but provides no further behavioral context such as pagination, output shape, or authorization requirements. Given the existing annotation, this is adequate but not rich.
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, one describing the operation and one giving the exact API endpoint. Every word adds value, and the core purpose is front-loaded in the first sentence.
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, zero-parameter list operation, the description is complete enough to call the tool correctly. It does not describe the return payload, but the absence of an output schema and the low complexity make this a minor gap rather than a significant omission.
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, so no parameter documentation is needed. The description adds no parameter-related meaning, but the baseline of 4 applies because there is nothing for the schema or description to explain.
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?
States a specific verb ('List') and resource ('connected calendar accounts/profiles linked to this Cronofy account') with concrete examples. It also names the API endpoint, and clearly distinguishes this from sibling cronofy_list_calendars by focusing on accounts/profiles rather than calendars.
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 clear context: use this when you need the connected calendar accounts/profiles for the Cronofy account. It does not explicitly mention when not to use it or name alternatives, but the resource distinction from sibling tools is clear enough for basic selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cronofy_read_eventsRead eventsARead-onlyInspect
Read events across the account's calendars over a time window. Returns { pages, events }. API: GET /v1/events.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | End of the window — date (yyyy-mm-dd) or ISO 8601 datetime. | |
| from | No | Start of the window — date (yyyy-mm-dd) or ISO 8601 datetime. | |
| tzid | Yes | REQUIRED time zone id for the response, e.g. "Etc/UTC" or "America/New_York". | |
| calendar_ids | No | Restrict to these calendar ids (sent as repeated calendar_ids[] params). | |
| only_managed | No | Return only events created via the Cronofy API. Default false. | |
| last_modified | No | Only events modified since this ISO 8601 datetime. | |
| include_deleted | No | Include deleted events. Default false. | |
| include_managed | No | Include events created via the Cronofy API. Default false. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation already covers the safe-read behavior, so the description is not required to restate that. It adds the return shape ({ pages, events }) and the REST endpoint, which is useful, but it does not disclose pagination behavior or how filtering options affect results beyond what the schema already says.
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 sentences with no filler: the first states the operation and scope, the second gives the return value and API endpoint. Information is front-loaded and every word earns 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?
For a tool with eight parameters and no output schema, the description is adequate but leaves gaps. It gives the return shape and endpoint, but offers no guidance on when to use filters like include_deleted, only_managed, or last_modified, and only hints at pagination through the 'pages' key.
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 100%, so all eight parameters are already documented. The description only adds a high-level connection between the time window and the from/to parameters, providing minimal additional 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 clearly states the verb 'Read' and the resource 'events', and adds scope by mentioning the account's calendars and a time window. This distinguishes it from sibling tools like cronofy_delete_event or cronofy_list_calendars, though it does not explicitly name any alternatives.
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?
Usage context is implied through phrases like 'across the account's calendars over a time window', which tells an agent this is the tool for reading event data. However, there is no explicit guidance about when to prefer this over related siblings like cronofy_get_free_busy or cronofy_upsert_event.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cronofy_upsert_eventCreate or update eventADestructiveInspect
Creates or updates an event on a REAL connected calendar (upsert by event_id). This writes to the user's actual calendar. API: POST /v1/calendars/{calendar_id}/events.
| Name | Required | Description | Default |
|---|---|---|---|
| end | Yes | Event end — ISO 8601 datetime or a date (yyyy-mm-dd) string. | |
| tzid | No | Time zone id for the start/end, e.g. "America/New_York". | |
| start | Yes | Event start — ISO 8601 datetime or a date (yyyy-mm-dd) string. | |
| summary | Yes | Event title/summary. | |
| event_id | Yes | YOUR unique id for the event. Re-using it updates the same event. | |
| calendar_id | Yes | Target calendar id (from cronofy_list_calendars). | |
| description | No | Event description/body. | |
| location_description | No | Free-text location (sent as location.description). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true, and the description adds valuable context by emphasizing this writes to the REAL connected calendar and affects the user's actual data. It also discloses the upsert-by-event_id behavior, which is meaningful beyond the annotation alone.
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 compact: two clear sentences plus the endpoint. It front-loads the core action and side-effect warning without redundant phrasing or unnecessary detail.
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 the complete schema coverage and the destructiveHint annotation, the description provides sufficient context for invoking the tool. It lacks explicit guidance on update behavior for omitted optional fields and does not describe the response, but these are minor for basic invocation.
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 100%, so the input schema fully documents all parameters. The tool description adds little parameter meaning beyond noting the upsert keyed by event_id and the endpoint, but that doesn't elevate above the baseline.
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 clearly states the tool creates or updates an event via upsert by event_id, identifying the exact resource and action. It also names the API endpoint and distinguishes itself from siblings like cronofy_delete_event and cronofy_read_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 makes the use case clear: create or update a real connected calendar event using event_id for upsert semantics. It does not explicitly contrast with sibling tools, but the operation is self-evident and the 'writes to the user's actual calendar' warning sets appropriate expectations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, bound to the signed-in Glama account, and expire after seven days. They contain no email address or other personal information. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceMCP server for the Teamup Calendar API, enabling event management, calendar listing, and available slot search.
- AlicenseAqualityBmaintenanceMCP server for Apple Calendar and CalDAV providers. Enables listing, creating, updating, deleting events, and checking free/busy status with per-calendar write protection.6MIT
- FlicenseDqualityBmaintenanceMCP server for interacting with Google Calendar, enabling reading events from public calendars and, with OAuth, creating, updating, and deleting events.1
- FlicenseNot gradedqualityCmaintenanceMCP server for Google Calendar (single-user) using Service Account authentication. Provides tools to manage events, check free/busy, and find free slots.