transport-gzm
This server provides live public transit information for the GZM (Silesian Metropolis) area as MCP tools, letting AI agents query vehicle positions, trip updates, arrivals, and alerts.
Check feed health and age (
health) – distinguish 'no data' from 'upstream down'.Get current feed counts (
feed_summary) – number of vehicles, trips, and alerts.List live vehicle positions (
vehicles) – filter by route or stop; also get a single vehicle by ID (vehicle_by_id).View trip updates (
trip_updates) – predicted arrival times, delays, and stop skips, filterable by route/stop/trip.Get upcoming arrivals at a stop (
next_arrivals) – departure-board style, sorted by predicted time with minutes from now.List active service alerts (
alerts) – planned works, delays, detours; inspect individual alerts viaalert_by_id.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@transport-gzmnext arrivals at stop Katowice Dworzec"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
transport_gzm
MCP server wrapping the GTFS-RT live transit feed for GZM (Górnośląsko-Zagłębiowska Metropolia) — the Silesian Metropolis public transport operator in Poland.
Provides a small, focused set of tools so AI agents can answer questions like:
"What buses/trams are currently running on route X?"
"Is vehicle Y delayed? Where is it right now?"
"What alerts are currently active (delays, disruptions, works)?"
"When does the next departure of line 6 arrive at stop Z?"
How it works
GZM publishes a public GTFS-RT feed at
https://gtfsrt.transportgzm.pl:5443/gtfsrt/gzm (no auth, CC-BY licensed).
It exposes three logical sub-feeds:
Path | Content |
| full bundle (all three sub-feeds) |
| live GPS positions of every vehicle |
| arrival-time deltas and stop-skips |
| service alerts (works, delays, etc.) |
This server fetches the protobuf, decodes it, and exposes it as 9 tools that return JSON-friendly structures sized for LLM context windows.
Static GTFS join (why it matters)
The GZM GTFS-RT feed is minimal: trip descriptors carry only a trip_id
(no route_id), and stop-time updates carry only relative delays — no
absolute times and no stop_id. To answer "which line is this bus" or
"when does the next tram leave stop X", the server additionally loads:
Static GTFS — daily mirror at
github.com/TransportGZM-GTFS-mirror/TransportGZM-GTFS-extended-ver(same id space as the RT feed; verified). Downloaded once and cached forGZM_STATIC_TTL_HOURS(default 24 h).SDIP live departures — GZM's own passenger-information system behind
rj.transportgzm.pl, which powers the real departure boards. The stop directory (/api/v2/stops/data/, ~7 150 poles) is coordinate-matched to GTFS stops at load time.
Related MCP server: Wellington Transport Assistant
Quick start
Run with Docker (recommended)
docker run -i --rm ghcr.io/wiktor102/transport-gzm:latestWire it into your MCP client (Claude Desktop, opencode, …):
{
"mcpServers": {
"transport-gzm": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/wiktor102/transport-gzm:latest"]
}
}
}Run from source
pip install -e .
transport-gzm…or with uv:
uv run --with mcp[cli] --with gtfs-realtime-bindings --with httpx \
python -m transport_gzm.serverTools
Tool | Purpose |
| Check feed availability + report feed age |
| Counts of vehicles, trips, alerts currently in the feed |
| Search/filter live vehicle positions (by route, stop) |
| Get a single vehicle's current position |
| Arrival predictions; filter by route, stop, or trip |
| Live departure board per stop (GZM SDIP, minutes) |
| Find stops by name → |
| Active service alerts (works, delays, detours) |
| One alert by id |
See docs/tools.md for full parameter documentation and
output schemas.
Configuration
Env var | Default | Purpose |
|
| Override the base URL |
|
| HTTP timeout in seconds |
|
| In-process feed cache TTL in seconds |
|
| Default cap for |
|
| Default cap for |
|
| Default cap for |
|
| Outgoing UA |
| GitHub mirror ZIP of the extended GTFS | Static schedule source (must share the RT trip-id space) |
|
| SDIP stop directory |
|
| Live departures board base URL |
|
| How long to cache the static GTFS index |
|
| Max distance for rj→GTFS stop matching |
|
|
|
License
MIT. GTFS-RT data © Górnośląsko-Zagłębiowska Metropolia, CC-BY 4.0.
Available Tools
8 toolsalert_by_idA
Get a single alert by entity id (e.g. from a previous alerts() result).
| Name | Required | Description | Default |
|---|---|---|---|
| alert_id | Yes | Entity id of the alert. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It explains the basic behavior (retrieve a single alert) but does not disclose potential errors, rate limits, or data freshness. For a simple read-only operation, this is adequate but not thorough.
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?
Single sentence with no unnecessary words. Front-loaded with the core action 'Get a single alert by entity id', making it immediately clear.
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 simple nature (single parameter, no output schema), the description adequately explains what the tool does and how to obtain the input. No major gaps.
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 describes alert_id as 'Entity id of the alert.' The description adds that the id comes from a previous alerts() result, providing contextual meaning beyond the schema's definition.
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 'Get a single alert by entity id', specifying the verb 'Get', the resource 'alert', and that it's a single entity. It differentiates from sibling 'alerts' by noting the origin of the id from a previous alerts() result.
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?
Description explicitly suggests when to use this tool: when you have an entity id from a previous alerts() result. This gives clear context, though it does not mention when not to use it or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
alertsA
List active service alerts (planned works, delays, detours, stop closures). Use this for 'is the tram line broken?', 'any works today?', 'why is my bus late?'.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum alerts to return (default 100). | |
| stop_id | No | Only alerts affecting this stop. | |
| route_id | No | Only alerts affecting this route. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states the tool lists 'active' alerts, which is a behavioral trait. However, it does not disclose further details like real-time nature, performance characteristics, or any side effects, which is acceptable for a simple read-only list 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?
The description is a single sentence plus usage examples, front-loading the core purpose and immediately providing context. Every part is necessary and there is no redundancy or 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?
For a simple list tool with three optional parameters and no output schema, the description covers the purpose, usage context, and parameter semantics (via schema). It does not mention ordering or pagination beyond the limit parameter, but these are reasonable defaults. Overall, it is sufficiently 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 description coverage is 100% (all three parameters have descriptions). The tool description adds no additional meaning beyond what the schema already provides, so 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 explicitly states the verb 'List' and the resource 'active service alerts', with specific alert types (planned works, delays, detours, stop closures). It clearly distinguishes from sibling tools like alert_by_id, feed_summary, etc., without ambiguity.
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 concrete usage examples ('is the tram line broken?') that imply when to use the tool. It does not explicitly exclude alternatives (e.g., alert_by_id for specific alerts), but the context is clear enough for an AI agent to select appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
feed_summaryA
Get the current counts of vehicles, trip updates and alerts in the live feed. Cheap; does not return full payloads.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses that the call is lightweight and returns only counts, not full data. No side-effects or auth needs mentioned, but sufficient for a simple 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 sentences, no fluff. Purpose is front-loaded, and additional info about cost and payload is succinctly stated.
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, no-output-schema tool, the description adequately describes what it does and its performance characteristics. Could mention real-time nature, but not necessary.
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?
No parameters exist, so schema coverage is 100%. The description does not need to add parameter info. Baseline score of 4 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?
Clearly states it returns counts of vehicles, trip updates, and alerts. Distinguishes from siblings like 'vehicles' and 'alerts' which return full payloads, and 'health' which is about system status.
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?
Explicitly mentions it's 'cheap' and 'does not return full payloads', implying it's for quick summaries. Does not explicitly name alternatives or when-not, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
healthA
Check whether the GZM live transit feed is reachable and report how old it is. Call this first if a query seems to return empty results — it can distinguish 'no vehicles right now' from 'upstream is down'.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It clearly indicates that the tool performs a reachability check and reports age, implying no side effects or destructive actions. A small gap: it does not describe the response format, but for a health check this is acceptable.
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 that front-load the core purpose and provide actionable usage guidance. Every word adds value; no fluff.
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 (no params, no output schema), the description is complete. It clearly states the tool's function, when to use it, and what it can differentiate, fully meeting the needs of the agent.
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 (0 params, 100% coverage). The description does not need to elaborate on parameters. Baseline of 4 is appropriate as the schema provides no additional meaning.
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 specifies exactly what the tool does: check if the GZM live transit feed is reachable and report its age. It distinguishes this tool's purpose from sibling tools like 'vehicles' or 'next_arrivals' by focusing on feed health rather than transit data.
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?
Explicitly states when to call this tool: 'Call this first if a query seems to return empty results'. It also explains the diagnostic value: distinguishing 'no vehicles right now' from 'upstream is down', which helps the agent decide next steps.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
next_arrivalsA
Get upcoming arrivals at a specific stop, across all routes, sorted by predicted arrival time. Equivalent to a digital departure board. Returns the 'minutes_from_now' field already computed for you.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum arrivals to return (default 20). | |
| stop_id | Yes | GTFS stop id, e.g. 's_1234'. | |
| route_id | No | Optional: only show arrivals on this route. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears full responsibility for behavioral disclosure. It indicates that arrivals are upcoming, sorted, and that the 'minutes_from_now' field is pre-computed. It does not mention destructive behavior (none expected), rate limits, or data freshness, but the core behavior is clearly conveyed. Some minor gaps exist (e.g., whether past arrivals are excluded), but overall transparency is good.
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 extremely concise with only two sentences. The first sentence delivers the core purpose, sorting, and scope. The second sentence adds a helpful analogy and a key output detail. No information is redundant or extraneous, and the most critical facts are front-loaded.
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 that the tool has 3 parameters and no output schema, the description adequately explains the output returns a sorted list with the 'minutes_from_now' field. However, it does not describe the full output structure (e.g., route names, arrival times), which an agent might need for correct handling. The description is sufficient for basic usage but could be more complete about the return format.
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 100% description coverage, so the baseline is 3. The description adds value by highlighting the pre-computed 'minutes_from_now' field in the output, but it does not elaborate on parameter usage beyond what the schema already states (e.g., 'stop_id' is a GTFS ID, 'route_id' filters). Thus, the description provides minimal additional semantic context for the parameters.
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 'Get', the resource 'upcoming arrivals', and the context 'at a specific stop, across all routes, sorted by predicted arrival time'. It uses a vivid analogy 'Equivalent to a digital departure board', making the purpose immediately understandable. This tool is distinct from siblings like 'trip_updates' or 'alerts', which do not focus on per-stop arrival 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 quick stop-level arrival lookups via the 'digital departure board' analogy, but it does not explicitly state when to use this tool over alternatives (e.g., 'trip_updates' for trip-level data). There is no mention of prerequisites or situations where the tool should not be used, which leaves the agent without important decision criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
trip_updatesA
List live trip updates: scheduled vs predicted arrival times and any stop-skips. Use this for 'is line 6 delayed', 'what time does the next bus arrive', or 'is stop X skipped'.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of trips to return (default 200). | |
| stop_id | No | Filter to trips that touch this stop. | |
| trip_id | No | Filter to one specific trip. | |
| route_id | No | Filter by GTFS route id. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries full burden. It describes the output but lacks details on data freshness, pagination, or rate limits. The examples hint at real-time data, but behavioral traits are not fully disclosed.
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 with no fluff. The purpose is front-loaded, followed by concrete examples. 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?
Given 4 optional parameters and no output schema, the description covers the return values (times and skips) and usage scenarios. It could mention sorting or time frame but is sufficient for a list 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 coverage is 100%, and the description adds value by linking parameters to use cases (e.g., 'line 6' implies route_id, 'stop X' implies stop_id). It does not repeat schema but enhances understanding.
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 it lists live trip updates with scheduled vs predicted times and stop-skips. It provides concrete example queries, distinguishing it from sibling tools like alerts or next_arrivals.
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?
Explicit usage examples are given ('is line 6 delayed', etc.), indicating when to use the tool. However, it does not explicitly mention when not to use it or provide alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
vehicle_by_idA
Get a single vehicle's current position by its vehicle id or label (e.g. fleet number painted on the bus, or the entity id from a previous vehicles() call).
| Name | Required | Description | Default |
|---|---|---|---|
| vehicle_id | Yes | Vehicle label, internal id, or entity id. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states that it returns current position, but does not disclose error behavior, authentication needs, or rate limits; adequate for a simple read 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 a single sentence that includes examples, making it slightly longer but still clear and efficiently conveying essential information.
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 (one parameter, no output schema), the description is fairly complete: it explains what is returned and how to identify the vehicle. It could optionally describe the return format, but that is often inferred.
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 schema already describes the parameter as 'Vehicle label, internal id, or entity id.' The description adds value by giving concrete examples (e.g., 'fleet number painted on the bus, or the entity id from a previous vehicles() call'), which helps the agent understand acceptable inputs.
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 explicitly states the verb 'Get' and the resource 'single vehicle's current position', with examples of acceptable identifiers, clearly distinguishing it from siblings like 'vehicles' which returns all vehicles.
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 when you have a specific vehicle id or label, but does not explicitly state when not to use or name alternatives like 'vehicles' or 'next_arrivals' for broader queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
vehiclesA
List live vehicle positions (buses, trams, trains) currently running. Use this when the user asks 'what's running', 'where is line X', or 'find a bus to Y'. Returns up to limit vehicles, newest first by timestamp.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of vehicles to return (default 200). | |
| stop_id | No | Filter by the stop the vehicle is currently at, incoming to, or in transit to. Exact match. | |
| route_id | No | Filter by GTFS route id (e.g. '6', 'T2', 'M104'). Exact match — case sensitive. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses ordering (newest first) and limit behavior, but lacks details on rate limits, response format, or error handling. No annotations to contradict.
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?
Concise two sentences, front-loaded with purpose and usage. No redundant information.
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 basic behavior and filtering, but lacks return format details, which is important given no output schema.
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 baseline applies. The description adds no additional semantics beyond 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 clearly states the tool lists live vehicle positions and gives example queries, distinguishing it from sibling tools like vehicle_by_id.
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?
Provides explicit use cases ('what's running?', 'where is line X') but does not mention when not to use or alternatives.
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.
8 tool updates
v0.1.0- First observed
alert_by_id - First observed
alerts - First observed
feed_summary - First observed
health - First observed
next_arrivals - First observed
trip_updates - First observed
vehicle_by_id - First observed
vehicles
TDQS
Each tool has a distinct purpose: alerts vs alert_by_id, vehicles vs vehicle_by_id, next_arrivals for stop-specific predictions, trip_updates for delay info, feed_summary for metadata, and health for system status. No two tools overlap in functionality.
Tools follow a clear pattern: plural names for list operations (alerts, vehicles, trip_updates) and 'by_id' for single items (alert_by_id, vehicle_by_id). feed_summary and health are unique but descriptive. next_arrivals deviates slightly but remains intuitive.
With 8 tools, the server is well-scoped for a transit data API. It covers all necessary operations without redundancy or bloat, making it efficient for agents to navigate.
The tool set covers core real-time transit data: vehicle positions, alerts, trip updates, stop arrivals, and system health. Missing static data like route or stop listings, but for live monitoring, it is sufficiently complete.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Public Data Ukraine Mcp connects AI agents to real public APIs via MCP. Tools include
Read-only airport delay, weather, and 24h forecast tools for AI assistants. Airport-level only.
Machine-readable utilities and datasets for AI agents.
Messaging tools for AI agents: send messages, manage chats, groups and channels.
1
Related MCP Servers
- AlicenseBqualityFmaintenanceEnables AI clients to access Boston's MBTA public transit data, including real-time predictions, schedules, route planning, and service alerts.321Apache 2.0
- AlicenseNot gradedqualityDmaintenanceProvides tools to search stops, get next departures, and retrieve service alerts from Metlink's real-time public transport data, enabling natural language queries about Wellington transit.MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to query Prague's public transit departures, air quality, parking availability, and other city data via the Golemio open data API.12GPL 3.0
- FlicenseNot gradedqualityBmaintenanceProvides VRR public transit data as MCP tools for Claude, enabling departure board lookups, trip planning with optional via stops, and disruption overviews.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Wiktor102/transport-gzm'
If you have feedback or need assistance with the MCP directory API, please join our Discord server