Emisoras de Colombia
Server Details
264 emisoras de radio colombianas en vivo: busca por ciudad, genero o dial y escuchalas.
- 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
Average 4.4/5 across 3 of 3 tools scored.
buscar_emisoras se distingue claramente porque se usa para encontrar emisoras, y ver_emisora entrega la ficha completa. Sin embargo, escuchar y ver_emisora comparten parcialmente la devolución de la dirección de escucha, lo que puede generar alguna ambigüedad menor.
buscar_emisoras y ver_emisora siguen el patrón verbo_sustantivo, pero escuchar es solo un verbo sin complemento, rompiendo la consistencia del conjunto. Los nombres son legibles y en español, pero la convención no es uniforme.
Con 3 herramientas, el servidor está bien acotado para su propósito: buscar emisoras, reproducirlas y consultar datos detallados. No hay herramientas redundantes ni faltan capas obvias que inflen o vuelvan insuficiente el conjunto.
El dominio es la consulta y reproducción de emisoras colombianas, y el conjunto cubre el recorrido completo: buscar emisoras, obtener la ficha, y obtener la URL de reproducción. No se identifican funciones esenciales faltantes para el propósito declarado.
Available Tools
3 toolsbuscar_emisorasAInspect
Busca emisoras de radio colombianas por ciudad, genero, frecuencia del dial o texto libre. Usala cuando alguien pida escuchar radio de Colombia sin nombrar una emisora exacta, por ejemplo "vallenato en Barranquilla" o "una emisora de noticias". Devuelve el total de coincidencias y una pagina de resultados. GENEROS DISPONIBLES (son los unicos): Clasica, Cristiana, Electronica, Noticias, Pop, Rock, Tropical, Urbana, Vallenato, Variada. Son categorias amplias. La salsa, la cumbia, el merengue, la champeta, el porro y la bachata estan dentro de Tropical. El reguetón y el hip hop estan dentro de Urbana. Las baladas y el pop en espanol, dentro de Pop. Si el usuario pide un estilo que no esta en esa lista, usa el genero mas cercano, o pasa el estilo en el parametro "texto" para buscarlo en los nombres de las emisoras.
| Name | Required | Description | Default |
|---|---|---|---|
| texto | No | Texto libre: busca en nombre, ciudad, genero y apodos conocidos. | |
| ciudad | No | Ciudad colombiana, con o sin tilde. Ej: Bogota, Medellin, Barranquilla. | |
| genero | No | Uno de: Clasica, Cristiana, Electronica, Noticias, Pop, Rock, Tropical, Urbana, Vallenato, Variada. Si pasas un estilo que no es un genero del catalogo (salsa, cumbia, champeta), se busca ese termino en los nombres de las emisoras. | |
| limite | No | Cuantos resultados devolver. Por defecto 10, maximo 50. | |
| frecuencia | No | Frecuencia del dial. Ej: "89.9" o "89.9 FM". |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Sin anotaciones, la descripción asume el peso de revelar el comportamiento: indica que devuelve 'total de coincidencias y una página de resultados' y detalla la taxonomía de géneros con mapeos (salsa→Tropical, reguetón→Urbana) y la estrategia de fallback para estilos no listados. Esto va más allá del esquema y es valioso.
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?
La descripción es larga pero bien organizada: comienza con el propósito, sigue con uso, luego retorno y terminología de géneros. Cada oración aporta información nueva; aunque podría acortarse, no es redundante.
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?
Dado que no hay esquema de salida, la descripción cubre el retorno ('total de coincidencias y una página de resultados') y explica el manejo de géneros ambiguos, lo que hace que la herramienta sea utilizable sin ambigüedad. Falta detallar la paginación pero es suficiente para el caso de uso.
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?
El esquema cubre el 100% de los parámetros, pero la descripción agrega contexto cultural y de dominio: aclara que las ciudades pueden llevar tilde, explica la semántica de 'genero' (solo los 10 listados) y cómo manejar estilos no catalogados (usar 'texto'), lo que facilita la correcta selección de parámetros.
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?
El verbo 'busca' junto con el recurso 'emisoras de radio colombianas' define claramente la acción y el objeto. Además, los ejemplos ('vallenato en Barranquilla') y la mención de parámetros de búsqueda (ciudad, género, frecuencia, texto) lo distinguen de los hermanos 'escuchar' y 'ver_emisora'.
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?
Proporciona una condición de uso explícita ('Usala cuando alguien pida escuchar radio de Colombia sin nombrar una emisora exacta') con ejemplos concretos. No menciona alternativas directamente, pero la diferencia con los hermanos es implícita por su naturaleza de búsqueda.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
escucharAInspect
Devuelve la direccion estable para reproducir una emisora en vivo. Usala cuando el usuario quiera escuchar. La direccion es permanente y redirige a la senal vigente; nunca uses la senal de origen directamente porque puede caducar.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Identificador de la emisora, tal como lo devuelve buscar_emisoras. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full transparency burden. It discloses that the returned address is permanent and redirects to the current signal, and warns that the source link may expire. This adds important behavioral context beyond any schema, explaining persistence and redirect 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 concise and front-loaded with the primary action, then adds a caveat about source expiry. It contains zero fluff and every sentence adds value—coverencing purpose, usage, and a critical warning in two sentences.
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 has only one parameter and no output schema, and the description covers what it returns, when to use it, and a key caveat. It lacks error handling or return-format details, but for a simple retrieval that returns a URL, it is sufficiently complete given annotations are absent.
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%, and the single parameter slug is already well-defined as the station identifier from buscar_emisoras. The description does not add extra parameter semantics beyond that, so a baseline score of 3 is appropriate.
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 returns a stable streaming address for a live station, which is a specific verb+resource purpose. It distinguishes itself from siblings like buscar_emisoras (searching) and ver_emisora (viewing details) by focusing on obtaining the playable URL.
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 explicit when-to-use ('usala cuando el usuario quiera escuchar') and also warns against using the source signal directly. However, it lacks any mention of alternatives (e.g., when not to use this tool) relative to siblings, though the instruction to use it for listening is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
ver_emisoraAInspect
Devuelve la ficha completa de una emisora: ciudad, dial, genero, cadena, sitio oficial, descripcion y su direccion de escucha. Usala cuando ya tengas el slug de una emisora y necesites sus datos.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Identificador de la emisora, tal como lo devuelve buscar_emisoras. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description carries the full burden and delivers excellent context: it enumerates the result fields (ciudad, dial, genero, cadena, sitio oficial) and identifies the response includes both descriptive data and streaming URL. While it doesn't discuss auth, rate limits, or errors, the 'ficha completa' plus the return list gives an agent confidence in what to expect.
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, information-dense sentences in Spanish. First sentence handles the purpose and returns; second handles the usage context. Zero fluff, perfectly sized for an agent to read 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?
Given the tool's simplicity (1 param, no nested schemas, no output schema) and the completeness of the description plus parameter documentation, it's essentially complete. Rating 4 instead of 5 because the description could have briefly noted error behavior (e.g., invalid slug) — but for a single-record fetch with well-documented parameters, this is nearly perfect.
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% — the 'slug' parameter already has an excellent description noting it's the identifier from 'buscar_emisoras'. The description text reinforces this by specifying the expected format ('tal como lo devuelve buscar_emisoras'). There are no additional parameter semantics needed. Slightly penalizing for not being at 5 since it could have mentioned whether the slug is case-sensitive, but the description is already doing schema's work.
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 opens with a specific verb ('Devuelve') and resource ('ficha completa de una emisora'), listing the exact data fields (ciudad, dial, genero, cadena, sitio oficial, descripcion, direccion de escucha) and when to use it (when you already have a slug). This clearly distinguishes it from siblings: it complements buscar_emisoras (which finds slugs) and escuchar (which plays).
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 states 'Usala cuando ya tengas el slug de una emisora', directly telling the agent when to call this tool. It also references the sibling tool 'buscar_emisoras' as the source of the slug, establishing a clear workflow and implicitly ruling out usage when seeking stations.
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!
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceInternet radio + AI DJ for Claude. 55,000+ stations across 197 countries. Search, play, and get recommendations through natural language.1MIT
- AlicenseNot gradedqualityFmaintenanceInternet radio for Claude and your terminal with ~25,000 verified live stations from 197 countries. Control playback, search, and get recommendations through natural language.MIT
- FlicenseNot gradedqualityBmaintenanceEnables users to anonymously share and pass along songs with messages in mood-based rooms, and view community-featured radio feeds, relay chains, and charts.
- AlicenseNot gradedqualityCmaintenanceMCP server that wraps the Radio Browser API to search radio stations, list countries, and discover genres. Enables AI agents to find and browse radio stations without authentication.4MIT