Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsB

Average 3/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count4/5

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.

Completeness4/5

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 tools
get_connectionsBInspect

Get public transport connections between two Swiss locations. Returns up to the requested number of next departures.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesArrival station name or ID.
fromYesDeparture station name or ID.
limitNoMaximum number of connections to return. Defaults to 4.
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of departures to return. Defaults to 10.
stationYesStation name or ID to get the departure board for.
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesStation name to search for (e.g., "Zurich HB", "Bern", "Geneva").
Behavior2/5

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.

Conciseness5/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.