Skip to main content
Glama

Server Details

Live UK bike-share availability: nearby bikes and stations, popular stations, 90-day history.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
ThisisBankole/Starling-Bank-Bikes-Mancheter
GitHub Stars
1

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 DescriptionsA

Average 3.9/5 across 5 of 5 tools scored. Lowest: 3.1/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct aspect of bike-share data: city listing, station search, live network totals, time trends, and popular stations. No functional overlap exists.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., find_stations, get_network_status), making the API predictable.

Tool Count5/5

Five tools cover the core features of a bike-share tracking service without unnecessary clutter, striking a good balance.

Completeness4/5

The set covers querying cities, finding stations, live status, trends, and popular stations. A minor gap is the lack of a tool for individual station details beyond live availability.

Available Tools

5 tools
find_stationsAInspect

Find bike stations in a city with live availability. Filter by a name search and/or sort by distance from a coordinate (results then include distance_km). Without lat/lon, results are sorted by most bikes available.

ParametersJSON Schema
NameRequiredDescriptionDefault
latNoLatitude to sort by proximity
lonNoLongitude to sort by proximity
cityYesCity id: one of manchester
limitNo
queryNoCase-insensitive station name filter
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the full burden. It discloses live availability, sorting default, and that distance_km appears when coordinates are provided. This is valuable behavioral context, though it doesn't cover pagination or rate limits.

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?

Two sentences, front-loaded, no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with no output schema, this covers key behaviors: live availability, filtering, sorting, and conditional output. The limit parameter is documented in schema, so the description is adequate.

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 80%, so baseline is 3. The description adds nuance around lat/lon (including distance_km) and default sorting, but doesn't explain limit beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description begins with 'Find bike stations in a city with live availability', stating a specific verb, resource, and scope. It further clarifies filtering by name and sorting by distance, which distinguishes it from sibling tools like get_popular_stations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It clearly states the tool finds stations and explains conditional behavior for lat/lon vs no coordinates. It doesn't explicitly name alternatives or when not to use, but gives enough context on usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_availability_trendAInspect

Time series of bikes available and active stations for a city, one point per 10-minute snapshot, newest first. Up to 90 days of history.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesCity id: one of manchester
hoursNo
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full transparency burden. It discloses key behaviors: 10-minute snapshot intervals, newest-first ordering, and up to 90 days of history. However, it does not explicitly confirm the operation is read-only, define 'active stations,' or describe response format beyond 'time series.'

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 two concise sentences, front-loading the primary purpose and then adding key behavioral details. Every word contributes without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with two parameters and no output schema, the description provides a solid shape of the response (time series of two metrics) and key constraints (resolution, ordering, retention). It lacks explicit return-field names and error scenarios, but for this complexity it is nearly complete.

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 coverage is only 50%, but the description adds context by clarifying the city scope and the maximum history window (90 days), which helps interpret the hours parameter. It does not explicitly explain hours semantics beyond the schema's default/min/max, so the description partially compensates.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the tool's function: it returns a time series of bike availability and active stations for a city, with a specific temporal resolution. This distinguishes it from sibling tools like find_stations (station search) and get_network_status (current status).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for historical trend analysis but does not explicitly state when to use this tool over alternatives or provide exclusion criteria. It mentions the time-series nature and 90-day history, which signals suitability for trend queries, but lacks direct comparison with siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_network_statusAInspect

Live network totals for a city: bikes available, e-bikes, active stations, bikes docked at stations. Data refreshes every 10 minutes.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesCity id: one of manchester
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It adds the refresh interval ('Data refreshes every 10 minutes') which is a useful behavior. However, it does not explicitly state read-only semantics, error handling, or the exact return format. The listed fields provide some transparency, but the burden is only partially met.

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, front-loaded sentence with no filler. It conveys the core purpose and key details (data fields and refresh rate) efficiently. Every word contributes value, making it highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

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 covers the essential information: purpose, data fields returned, and refresh behavior. It lacks an explicit return format or error conditions, but the field list provides sufficient context for an agent to invoke the tool correctly.

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 schema covers 100% of the parameter descriptions, with 'city' described as 'City id: one of manchester'. The tool description adds no additional parameter context, but since the schema provides complete documentation, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/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: 'Live network totals for a city' and enumerates specific data fields (bikes available, e-bikes, active stations, bikes docked). This specific verb+resource combination distinguishes it from sibling tools like find_stations or get_availability_trend, which focus on station-level or trend data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool: when you need city-level network totals. It implies usage by listing the data fields, but does not explicitly mention alternatives or exclusion scenarios. This meets the 'clear context, no exclusions' level, though it stops short of naming sibling tools as alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_citiesAInspect

List the bike-share cities Cycle Tracker covers, with their ids (used by every other tool) and map coordinates.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden for behavioral disclosure. It clearly communicates this is a read/list operation and what the output contains (ids and coordinates). For a simple zero-parameter listing tool, this is adequate transparency, though it does not elaborate on edge cases or response structure.

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?

A single, front-loaded sentence that states the purpose, scope, and key output fields without redundancy. Every word contributes useful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (zero parameters, no output schema), the description is fully complete: it names the resource, what is returned (ids and coordinates), and why it is relevant to other tools. There are no significant gaps 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.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, so the schema provides no semantic burden. The description adds valuable relationship context by explaining that the ids are used by every other tool, which is especially useful given the empty input schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') and clearly identifies the resource: bike-share cities covered by Cycle Tracker, including their ids and map coordinates. It distinguishes itself from sibling tools (find_stations, get_network_status, etc.) by focusing on the city-level listing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description notes that the ids are 'used by every other tool', implying this should be called first to obtain necessary ids. This gives clear usage context, though it does not explicitly state when not to use it or name alternatives.

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!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.