Kooma — Bambara AI
Server Details
Bambara AI over MCP: text-to-speech, transcription and translation (Bamanankan + more).
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
4 toolskooma_list_voicesAInspect
Liste les voix bambara disponibles pour la synthese vocale, avec leur identifiant, leur nom et leur genre. A appeler avant kooma_text_to_speech : les identifiants varient d'un compte a l'autre et ne doivent jamais etre codes en dur.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden. It adds a useful behavioral fact: voice identifiers vary from one account to another and should not be hard-coded. The verb 'Liste' implies a read-only operation, though it does not explicitly state side-effect-free behavior. Still, this is sufficient for a simple listing 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?
The description is two sentences, front-loads the purpose, and contains no redundant wording. Every sentence earns its place: one for what the tool returns, one for when and why to call it.
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 listing tool with no output schema, this description is complete: it names the resource, the output fields, the relationship to the sibling TTS tool, and an important data instability caveat. An agent has everything needed to invoke it 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?
The tool has zero parameters and the schema is an empty object with 100% coverage. There is nothing for the description to add about parameters, so the 0-parameter baseline of 4 applies.
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 a specific verb ('Liste') and resource ('voix bambara disponibles pour la synthese vocale'), and specifies the returned fields: identifiant, nom, and genre. It also explicitly ties the tool to kooma_text_to_speech, distinguishing it from the other siblings.
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 explicit when-to-use guidance: 'A appeler avant kooma_text_to_speech'. It also explains why it must be called first—voice IDs vary per account and must never be hard-coded—which gives the agent a clear decision rule.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kooma_text_to_speechAInspect
Transforme un texte en audio avec une voix bambara. Renvoie l'audio. Utiliser kooma_list_voices pour obtenir un identifiant de voix valide.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Le texte a lire a voix haute. | |
| voice | Yes | Identifiant de voix, obtenu via kooma_list_voices. | |
| format | No | Format de sortie. wav est sans perte, mp3 est plus leger. | wav |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that the tool converts text to audio and returns it, which is useful, but it does not mention length limits, latency, output format handling, or any failure modes. Adequate but shallow.
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, front-loaded with the action and output, followed by the prerequisite. Every sentence earns its place and there is 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 simple text-to-speech tool, the description provides the essential purpose, output, and prerequisite. The schema covers the parameters, so nothing is missing for a correct call, though behavioral caveats and explicit sibling routing could make it more 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 100%, so the baseline is 3. The description reinforces the voice parameter by specifying a Bambara voice and pointing to kooma_list_voices, but it adds little beyond what the schema already documents for text, voice, and format.
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 a specific action (transform text into audio), the resource (Bambara voice), and the output (returns the audio). This distinguishes it from siblings like kooma_transcribe_from_url and kooma_translate, while also pointing to kooma_list_voices as the source of valid voices.
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?
It gives a clear prerequisite: use kooma_list_voices to obtain a valid voice identifier. It does not explicitly state when not to use the tool versus transcription/translation, but the purpose is clear enough that an agent can infer the right context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kooma_transcribe_from_urlAInspect
Transcrit en texte un fichier audio ou video accessible par une URL publique en HTTPS. La langue est detectee automatiquement. Le fichier est plafonne a 25 Mo.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL HTTPS publique du fichier audio ou video. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral disclosure burden. It reveals meaningful operational constraints: public HTTPS access, 25 MB file limit, and automatic language detection. It does not mention response format or error behavior, but the core operation and limitations are transparent.
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 three short sentences with no filler. The main action is front-loaded, and each subsequent sentence adds a necessary constraint or behavior.
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 single-parameter tool with no output schema, the description provides enough context to invoke it correctly: what input to provide, what constraints apply, and what the tool does. It could be slightly stronger by describing the output form more explicitly, but 'en texte' already implies the transcript 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 coverage is 100% and the single parameter 'url' is already described in the schema as 'URL HTTPS publique du fichier audio ou video.' The description adds useful file-level context such as the 25 MB limit and audio/video support, but it does not add significant parameter-level semantics 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 action ('Transcrit en texte'), the resource ('un fichier audio ou video accessible par une URL publique en HTTPS'), and the result (text). It is easily distinguishable from sibling tools like kooma_list_voices, kooma_text_to_speech, and kooma_translate, which serve different purposes.
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 conditions for use: the input must be a public HTTPS audio/video URL, the language is auto-detected, and the file cannot exceed 25 MB. It does not explicitly contrast with sibling tools or state when not to use it, but the use case is well specified.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
kooma_translateAInspect
Traduit un texte entre le bambara et 13 autres langues. Les codes de langue combinent langue et ecriture : bam_Latn (bambara), fra_Latn (francais), eng_Latn (anglais), et ainsi de suite.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Le texte a traduire. | |
| source | No | Code de la langue source. Facultatif : detecte sinon. | |
| target | Yes | Code de la langue cible, par exemple bam_Latn. |
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. It adds useful scope context (supported languages and code format), but it does not disclose output format, source detection behavior, limits, or side effects. 'Traduit' implies a safe read-like transformation, so this is not a severe gap.
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 tight sentences: the first states the core purpose, the second gives the essential code-format guidance. No filler or redundant repetition of schema details.
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?
Adequate for a simple translation tool, but the '13 autres langues' set is not enumerated and no reference to accepted codes is provided, so an agent may not know all valid target codes. Return behavior is implicit but not critical.
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%, so the baseline is 3. The description adds value by explaining the combined language-script code scheme with concrete examples (bam_Latn, fra_Latn, eng_Latn), helping agents construct valid source and target values.
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 ('Traduit un texte') and identifies the resource ('entre le bambara et 13 autres langues'), clearly distinguishing it from sibling tools like TTS, transcription, or voice listing.
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 by the translation verb and language set, but there is no explicit when-to-use statement or comparison with siblings such as kooma_text_to_speech. The optional source detection is mentioned in the schema, not the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
kooma_list_voices - First observed
kooma_text_to_speech - First observed
kooma_transcribe_from_url - First observed
kooma_translate
Frequently Asked Questions
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, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.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. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. 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. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
LibreTranslate MCP — open-source machine translation (BYO endpoint)
African intelligence infrastructure for AI apps, developers, and data products via MCP.
131MCP server for Speech-to-Text
AI voice generation: text-to-speech and voice cloning from any MCP client.
Related MCP Servers
FlicenseAqualityCmaintenanceAn MCP server for Djelia that brings Bambara transcription, translation, and text-to-speech to any LLM.4-- AlicenseNot gradedqualityAmaintenanceLocal voice toolkit over MCP: transcribe audio to text in 25 languages, synthesize speech in 9, and list available voices and languages. Runs fully on-device — no API keys, no cloud.20673MIT
- AlicenseAqualityCmaintenanceLocal, private audio transcription MCP server enabling AI agents to transcribe audio files entirely on-device without uploading data.3MIT
- AlicenseNot gradedqualityDmaintenanceA lightweight MCP server empowering LLM clients with Indic language processing: translation, transliteration, language identification, and chat with Sarvam AI models.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a clearly distinct operation: voice discovery, speech synthesis, transcription from a URL, and translation. The only related pair, kooma_list_voices and kooma_text_to_speech, is explicitly designed as a dependency rather than an overlap.
All tools share the consistent kooma_ prefix and snake_case convention, with most names using straightforward verbs. kooma_text_to_speech breaks the verb-led pattern slightly, but the overall naming scheme remains predictable and readable.
With four tools, the server is tightly scoped to its core Bambara language tasks: text-to-speech, transcription, and translation. Every tool serves a distinct function and none feels redundant or extraneous.
The set covers the essential operations for each advertised capability, including a voice-list helper before synthesis and transcription from public URLs. Minor gaps such as a language-list helper for translation or local-file transcription are workable but not critical.