Bizzy Radio
Server Details
Find Bizzy radio stations, read station cards and public author information. Read-only; no playback.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolsfind_stationsARead-onlyIdempotentInspect
Find stations in Bizzy's full backend catalog by name or location, including unavailable stations. Empty query lists all. ID-sorted, bounded pagination; follow next_offset until null.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results, from 1 to 50. | |
| query | No | Case-insensitive substring of station name or location. Empty lists all stations. | |
| offset | No | Number of matching stations to skip; results are sorted by ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| limit | Yes | |
| total | Yes | Number of matches in the full backend catalog, including unavailable stations. |
| offset | Yes | |
| stations | Yes | |
| next_offset | Yes | Next page offset, or null at the end. Catalog changes can move results between pages. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds meaningful behavioral context beyond that: it includes unavailable stations, empty query lists all, results are ID-sorted, and pagination follows next_offset until null. This is useful operational detail that annotations don't 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?
Three sentences, dense with information, and the most important facts are front-loaded: what it finds, the scope, and key behaviors. No filler, and every sentence carries operational value. The pagination instruction is a natural final 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?
The description is quite complete given the rich annotations and 100% schema coverage. It covers filtering, ordering, pagination, and inclusion of unavailable stations. It stops short of describing the output schema (but an output schema exists, so that's acceptable per rubric). A small gap: no explicit statement that the tool is read-only, but annotations cover that. Overall, minor missing detail like whether 'full backend catalog' means all stations including system-hidden ones, but that's close to nitpicking.
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 schema fully documents the three parameters. However, since there are no required parameters, the description could have added nuance about how query interacts with limit/offset, e.g., whether offset is per-query or per-full-catalog. It does clarify 'Empty query lists all' and 'ID-sorted', which helps understand offset semantics, but it doesn't add much beyond the schema 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 says exactly what the tool does: 'Find stations in Bizzy's full backend catalog by name or location, including unavailable stations.' It names the resource (stations in the full catalog), the searchable dimensions (name or location), and an important scope detail (includes unavailable stations). It also implies a list/search distinction from the sibling get_station, which presumably retrieves a single station.
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 clear context for when to use this tool: when searching the full catalog by name or location. It doesn't explicitly name alternatives or exclusion conditions, but the sibling names (get_station, get_bizzy_info) plus the 'full backend catalog' phrasing imply this is the search/list tool vs. a single-record getter. A slight gap is not stating 'use get_station when you already have a station ID'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_bizzy_infoARead-onlyIdempotentInspect
Read the Bizzy authors and Misha Naer's public contact channels. No authentication required.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | |
| name | Yes | |
| authors | Yes | |
| contact | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the operation as read-only, idempotent, and non-destructive. The description adds valuable behavioral context beyond those hints: the data is public and no authentication is required, which materially affects whether an agent can invoke the tool in a given environment. This is sufficient for a simple zero-parameter read operation.
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 with no filler. The main purpose statement is front-loaded, and the authentication note follows naturally. 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 zero-parameter, read-only tool with an output schema and rich annotations, the description fully covers what the tool returns (author info and contact channels), the access requirement (no auth), and the operation type. Nothing essential is missing for an agent 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 input schema has no parameters and schema description coverage is 100%, so the description is not required to explain parameter behavior. Since zero-parameter tools receive a baseline of 4, this 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 names a specific verb ('Read') and a concrete resource ('Bizzy authors and Misha Naer's public contact channels'), making the tool's purpose immediately clear. The resource is distinct from the sibling tools find_stations and get_station, so an agent can differentiate them without opening the schema.
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 when to use the tool: when the agent needs Bizzy author information or Misha Naer's public contact channels. It also notes that no authentication is required, which is a useful precondition. However, it does not explicitly mention alternatives or situations where a sibling tool would be preferred.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_stationARead-onlyIdempotentInspect
Get a Bizzy station by a real catalog UUID. Returns the listening page, not an audio stream. Does not start playback.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Station UUID from the Bizzy catalog. Never invent an ID. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | Station UUID from the Bizzy catalog. Never invent an ID. |
| name | Yes | Station name as supplied by the backend. |
| location | Yes | Backend location, or an empty string if unspecified. |
| listen_url | Yes | Canonical Bizzy listening page to share with a person; not a raw audio stream. |
| availability | Yes | Backend health flag, not a live playback guarantee. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, idepotent, and non-destructive behavior. The description adds clarity beyond these by explicitly stating the tool returns a listening page rather than an audio stream and does not start playback, which is valuable behavioral context for an agent deciding whether to invoke it.
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?
Three short sentences deliver the essential information with no fluff. The core identification and scoping come first, followed by the critical caveats about playback and audio stream 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?
The tool has one well-documented parameter, clear annotations, and an output schema. The description fully covers what an agent needs to know to decide whether to call it and what to expect, especially the non-playback caveat.
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 schema already documents the single parameter thoroughly. The tool description reinforces that the UUID must be real, but adds little beyond the schema's own 'Never invent an ID' guidance.
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 uses a specific verb ('Get') and resource ('Bizzy station') with a precise identifier ('real catalog UUID'),making its purpose immediately clear. It also differentiates itself from siblings by clarifying it returns a listening page, not an audio stream.
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 clearly conveys when to use the tool: when you have a real catalog UUID and need the station's listening page. It implicitly distinguishes from find_stations, which would be used when searching without a UUID, and get_biz_info, which targets Bizzy info rather than a specific station.
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.
3 tool updates
- First observed
find_stations - First observed
get_bizzy_info - First observed
get_station
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
Deezer public music catalog (search/tracks/albums/artists/charts)
Browse published podcasts, video shows, and screenplays. Read-only public discovery.
Radio MCP — wraps Radio Browser API (free, no auth)
Keyless, read-only Lazyweb discovery for agents evaluating fit or researching public evidence.
31
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables searching and browsing internet radio stations from the Radio Browser directory, retrieving live now-playing track information from station streams via ICY/Shoutcast metadata, and interacting with directory data through MCP tools without requiring API keys.-
- AlicenseAqualityBmaintenanceProvides access to Lightning FM's music catalog, allowing agents to search tracks, look up artists, and check the currently playing track and stream URL via public Nostr and Blossom infrastructure.3162MIT
- AlicenseNot gradedqualityCmaintenanceEnables searching and retrieving metadata from Deezer's public catalog including tracks, albums, artists, and charts without authentication.7MIT
- AlicenseBqualityBmaintenanceProvides 41 read-only tools to search and browse Last.fm data, including artists, albums, tracks, user scrobble history, and charts.4116MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a clearly distinct purpose: searching the catalog, fetching a single station by UUID, and retrieving author/contact info. The two station-related tools are cleanly separated as list/search versus detail lookup.
All tool names follow a consistent snake_case verb_noun pattern: find_stations, get_bizzy_info, get_station. There are no mixed naming conventions or vague generic verbs.
Three tools is on the low end but reasonable for a focused read-only catalog server. Each tool has a role, though get_bizzy_info is somewhat auxiliary rather than core to the radio domain.
The set provides a usable workflow: find stations, then retrieve a station page by UUID, with author contact info as a bonus. It intentionally omits audio streaming or playback, which is a minor gap if the server is expected to support listening.