swisstransport
Server Details
Swiss Transport MCP — wraps Transport Open Data API (free, no auth)
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- pipeworx-io/mcp-swisstransport
- GitHub Stars
- 0
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 3/5 across 3 of 3 tools scored.
Each tool has a clearly distinct purpose: get_connections finds routes between locations, get_stationboard shows departures from a specific station, and search_stations locates stations by name. There is no overlap or ambiguity in functionality.
All tools follow a consistent verb_noun pattern (get_connections, get_stationboard, search_stations) with clear, descriptive names. The naming is uniform and predictable across the set.
Three tools is reasonable for a public transport server, covering core queries like connections, departures, and station search. It might be slightly thin for broader transit needs (e.g., missing service alerts or detailed station info), but it's well-scoped for basic functionality.
The tools cover essential public transport operations: finding connections, checking departures, and locating stations. Minor gaps exist, such as no tool for arrival times, service disruptions, or multi-modal planning, but agents can work around these with the provided tools.
Available Tools
3 toolsget_connectionsBInspect
Get public transport connections between two Swiss locations. Returns up to the requested number of next departures.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Arrival station name or ID. | |
| from | Yes | Departure station name or ID. | |
| limit | No | Maximum number of connections to return. Defaults to 4. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions that the tool 'Returns up to the requested number of next departures,' which gives some insight into output behavior (time-based, limited results). However, it lacks critical details like whether this is a read-only operation, potential rate limits, authentication requirements, error conditions, or what happens when locations aren't found—important for a tool that queries external data.
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 highly concise and well-structured in two sentences. The first sentence states the core purpose, and the second adds key behavioral context about the return limit. There is no wasted language, and it's front-loaded with essential information, making it efficient for an agent to parse.
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 moderate complexity (3 parameters, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose and output behavior but lacks details on usage guidelines, error handling, or deeper behavioral traits. Without annotations or an output schema, more context would be helpful for reliable agent invocation, but it's not entirely incomplete.
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 description adds minimal parameter semantics beyond the input schema. It implies the 'limit' parameter controls the number of connections returned ('up to the requested number'), but the schema already documents this with 100% coverage. No additional meaning is provided for 'from' or 'to' parameters, so the description doesn't compensate but doesn't detract either, meeting the baseline for high schema coverage.
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's purpose: 'Get public transport connections between two Swiss locations.' It specifies the verb ('Get'), resource ('public transport connections'), and geographic scope ('Swiss locations'). However, it doesn't explicitly differentiate from sibling tools like 'get_stationboard' or 'search_stations' beyond the general domain.
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 no guidance on when to use this tool versus the sibling tools 'get_stationboard' or 'search_stations'. It mentions the core functionality but offers no context about alternatives, exclusions, or specific use cases that would help an agent choose between these related transportation tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_stationboardBInspect
Get the live departure board for a Swiss public transport station.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of departures to return. Defaults to 10. | |
| station | Yes | Station name or ID to get the departure board for. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves 'live departure board' data, implying a read-only operation, but does not cover critical aspects like rate limits, authentication needs, error handling, or data freshness. This leaves significant gaps in understanding the tool's behavior and constraints.
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, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded and appropriately sized, making it easy for an agent to parse quickly and understand the core functionality.
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 moderate complexity (live data retrieval with two parameters), no annotations, and no output schema, the description is minimally adequate. It covers the basic purpose but lacks details on return values, error cases, or operational context, which are important for a tool involving real-time data and sibling alternatives.
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, clearly documenting both parameters ('station' and 'limit') with their types and purposes. The description adds no additional parameter semantics beyond what the schema provides, such as format examples or constraints, so it meets the baseline for high schema coverage without extra value.
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 ('Get') and resource ('live departure board for a Swiss public transport station'), making the purpose understandable. However, it does not explicitly differentiate from sibling tools like 'get_connections' or 'search_stations', which might also involve station or departure data, so it lacks sibling distinction.
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 no guidance on when to use this tool versus alternatives like 'get_connections' or 'search_stations'. It implies usage for live departure information but offers no explicit context, exclusions, or comparisons to sibling tools, leaving the agent without clear selection criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_stationsCInspect
Search for Swiss public transport stations (train, bus, tram) by name query.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Station name to search for (e.g., "Zurich HB", "Bern", "Geneva"). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only states what the tool does (searching), but doesn't describe any behavioral traits like whether it's read-only, rate limits, authentication needs, what happens with partial matches, or the format of results. This is inadequate for a tool with zero annotation coverage.
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, efficient sentence that states the tool's purpose without any wasted words. It's appropriately sized and front-loaded with the 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 lack of annotations and output schema, the description is insufficiently complete. It doesn't explain what the search returns (e.g., list of stations, their details), how results are structured, or any behavioral context needed for effective use. For a search tool with no structured output documentation, this creates significant 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 description coverage is 100%, so the schema already fully documents the single 'query' parameter. The description adds no additional parameter semantics beyond what's in the schema, maintaining the baseline score of 3 for high schema coverage.
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's purpose: searching for Swiss public transport stations by name query. It specifies the resource (stations) and verb (search), but doesn't differentiate from sibling tools like get_connections or get_stationboard, which appear to serve different functions.
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 no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools or any context about when search_stations is appropriate versus get_connections or get_stationboard, leaving the agent without usage direction.
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!