Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.

Tool Definition Quality

Score is being calculated. Check back soon.

Available Tools

5 tools
create_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesEvent title.
venueNoVenue name (in-person events).
isFreeNoTrue if the event is free (default true).
endDateNoISO-8601 end instant (optional; defaults to start + 1h).
categoryNoPrimary category, e.g. "Music".
isOnlineNoTrue for an online event.
startDateYesISO-8601 start instant, e.g. 2026-08-01T18:00:00Z.
ticketUrlNoExternal ticketing URL (paid events).
meetingUrlNoJoin URL (online events).
visibilityNoDefaults to public.
descriptionNoEvent description.
streetAddressNo
addressCountryNo
addressLocalityNoCity.
maximumAttendeeCapacityNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
eventYes
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 interestsA
Read-onlyIdempotent
Inspect

Find Nhimbe events matching one or more interests/categories (e.g. "Music", "Tech"). Optionally scope to a city. Returns a carousel.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoOptional city to scope the search to.
limitNoMax events to return (default 12).
interestsYesInterest or category names to match.

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYesNumber of events returned.
eventsYes
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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 meA
Read-onlyIdempotent
Inspect

Find upcoming Nhimbe events near a place. Pass a city (recommended). Returns a carousel of event cards.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCity to search in, e.g. "Harare".
limitNoMax events to return (default 12).

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYesNumber of events returned.
eventsYes
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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 eventA
Read-onlyIdempotent
Inspect

Look up a single Nhimbe event by id, slug, or short code. Returns one event card.

ParametersJSON Schema
NameRequiredDescriptionDefault
eventIdYesEvent id, slug, or short code.

Output Schema

ParametersJSON Schema
NameRequiredDescription
eventYes
Behavior3/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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 eventA
Destructive
Inspect

Update or manage an event you host — edit details or change its status (e.g. cancel). Requires WorkOS authentication. Returns the updated event card.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNo
statusNoNew lifecycle status (e.g. "cancelled" to cancel the event).
endDateNoISO-8601 end instant.
eventIdYesId of the event to update.
startDateNoISO-8601 start instant.
descriptionNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
eventYes
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources