nhimbe-events
Server Details
Discover and manage community events across Africa on Nhimbe (Mukoko Events).
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
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
Score is being calculated. Check back soon.
Available Tools
5 toolscreate_eventCreate an eventAInspect
Create a new Nhimbe event as the signed-in host. Requires the caller to be authenticated with WorkOS. Returns the created event card.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Event title. | |
| venue | No | Venue name (in-person events). | |
| isFree | No | True if the event is free (default true). | |
| endDate | No | ISO-8601 end instant (optional; defaults to start + 1h). | |
| category | No | Primary category, e.g. "Music". | |
| isOnline | No | True for an online event. | |
| startDate | Yes | ISO-8601 start instant, e.g. 2026-08-01T18:00:00Z. | |
| ticketUrl | No | External ticketing URL (paid events). | |
| meetingUrl | No | Join URL (online events). | |
| visibility | No | Defaults to public. | |
| description | No | Event description. | |
| streetAddress | No | ||
| addressCountry | No | ||
| addressLocality | No | City. | |
| maximumAttendeeCapacity | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| event | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Adds context beyond annotations: authentication required and return of created event card. Annotations already indicate mutation (readOnlyHint=false), so description complements well.
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, front-loaded with the core action. No unnecessary words.
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?
Covers authentication and return value. With output schema present and high schema coverage, it is sufficiently complete for a create tool.
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 80%, so baseline 3. Description does not add parameter-specific details 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?
Clearly states the action (create) and resource (Nhimbe event), noting it is for the signed-in host. Distinguishes from sibling tools like get_event and update_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?
States authentication requirement (WorkOS) but does not explicitly contrast with siblings. However, the purpose implies creation, not retrieval or update, so usage is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
events_matching_interestsFind events matching interestsARead-onlyIdempotentInspect
Find Nhimbe events matching one or more interests/categories (e.g. "Music", "Tech"). Optionally scope to a city. Returns a carousel.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | Optional city to scope the search to. | |
| limit | No | Max events to return (default 12). | |
| interests | Yes | Interest or category names to match. |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | Number of events returned. |
| events | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate a safe, read-only, idempotent operation. The description adds that the tool returns a carousel, providing additional behavioral context beyond annotations. No contradictions.
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 key information: purpose, scope, optional city, and return format. No extraneous text.
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 output schema provided and annotations covering safety, the description is complete for a simple search tool. It covers interests, city scoping, and limit, but doesn't address edge cases or pagination beyond the limit parameter.
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 100%, and the description does not add significant meaning beyond what the schema provides. Examples of interest values are given but do not clarify parameter semantics further.
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 clearly states the verb 'Find', the resource 'Nhimbe events', and the matching criteria 'interests/categories'. It distinguishes from sibling tools like events_near_me (location-based) and get_event (single event) by focusing on interest-based filtering.
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 the description (interest-based matching with optional city), but there is no explicit guidance on when to use this vs. alternatives like events_near_me or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
events_near_meFind events near meARead-onlyIdempotentInspect
Find upcoming Nhimbe events near a place. Pass a city (recommended). Returns a carousel of event cards.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City to search in, e.g. "Harare". | |
| limit | No | Max events to return (default 12). |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | Number of events returned. |
| events | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly and idempotent. The description adds that it returns a carousel of event cards, but no details on pagination, rate limits, or behavior without location. Adds modest value beyond annotations.
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, no filler. All information is front-loaded. Every sentence adds value.
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 output schema implied, return format is mentioned. Sibling tools exist but not explicitly differentiated. Minor gap: no description of default behavior when city is omitted. Still adequate for a low-complexity tool.
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 covers both parameters with descriptions (100% coverage). The description reinforces the city recommendation but adds no new semantics beyond what's in 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 tool finds upcoming Nhimbe events near a place, using the verb 'Find' and specifying the resource. It distinguishes from siblings like get_event (single event) and events_matching_interests (interest-based filtering).
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 recommends passing a city but does not explain what happens without it or when to use alternative tools like events_matching_interests. Some implicit guidance but lacks explicit when-not-to-use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_eventGet an eventARead-onlyIdempotentInspect
Look up a single Nhimbe event by id, slug, or short code. Returns one event card.
| Name | Required | Description | Default |
|---|---|---|---|
| eventId | Yes | Event id, slug, or short code. |
Output Schema
| Name | Required | Description |
|---|---|---|
| event | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds 'Returns one event card', which is consistent but not additional behavioral context beyond what annotations provide.
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, no fluff, front-loaded with key action and identifier types. Very efficient.
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 output schema exists and annotations are rich, the description provides sufficient context for a simple lookup tool. No missing aspects.
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 already covers the parameter 'eventId' with description listing allowed types (id, slug, short code). The description echoes this but does not add new meaning. Baseline 3 given 100% schema coverage.
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 'look up', the resource 'single Nhimbe event', and the identifiers (id, slug, short code). It distinguishes from siblings like create_event, update_event (mutations) and events_matching_interests, events_near_me (lists).
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 retrieving a single event by identifier, but does not explicitly contrast with sibling tools or state when not to use. However, the context of sibling tools makes the usage clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_eventUpdate or manage an eventADestructiveInspect
Update or manage an event you host — edit details or change its status (e.g. cancel). Requires WorkOS authentication. Returns the updated event card.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| status | No | New lifecycle status (e.g. "cancelled" to cancel the event). | |
| endDate | No | ISO-8601 end instant. | |
| eventId | Yes | Id of the event to update. | |
| startDate | No | ISO-8601 start instant. | |
| description | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| event | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate destructiveHint=true, and the description aligns by mentioning updates and cancellations. It adds authentication requirement and return type, but lacks details on side effects or idempotency. No contradiction with annotations.
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 front-load the purpose, then add authentication and return information. No wasted words.
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 covers core functionality, ownership, authentication, and return value. Given the presence of an output schema, it is fairly complete, though it could elaborate on what 'manage' entails beyond update and cancel.
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 67%, and the description only briefly references the status parameter ('change its status'). It adds little beyond the schema's existing parameter descriptions.
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 updates or manages an event the user hosts, mentions editing details and changing status (e.g., cancel). It distinguishes from siblings like create_event (creation) and get_event (read).
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 ownership ('event you host') but does not explicitly state when to use this tool vs. alternatives like create_event or get_event. No when-not or exclusionary guidance provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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!