cityuikes
Server Details
Citybikes MCP — wraps CityBik.es API (free, no auth required)
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- pipeworx-io/mcp-citybikes
- 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.7/5 across 3 of 3 tools scored. Lowest: 2.9/5.
Each tool has a clearly distinct purpose: get_network retrieves detailed station data for a specific network, list_networks provides a global overview of all networks, and search_networks filters networks by location. There is no overlap in functionality, making tool selection straightforward for an agent.
All tool names follow a consistent verb_noun pattern (get_network, list_networks, search_networks) with clear, descriptive verbs. The naming is uniform and predictable, enhancing usability.
With 3 tools, the server is well-scoped for its bike-sharing network domain. Each tool serves a distinct and essential function: listing, searching, and retrieving detailed data, making the count appropriate and efficient.
The tool set covers core operations for accessing bike-sharing network data, including listing, searching, and getting details. A minor gap exists in not providing real-time updates or user-specific actions like booking, but the surface is largely complete for basic querying needs.
Available Tools
3 toolsget_networkAInspect
Get live station data for a bike-sharing network by its id (e.g. "citi-bike-nyc"). Returns network name and all stations with bike availability, empty slots, and coordinates.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Network id (e.g. "citi-bike-nyc", "velib" for Paris, "nextbike-berlin") |
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. It discloses that the tool returns live data, network name, and station details (availability, slots, coordinates), which is useful behavioral context. However, it lacks information on error handling, rate limits, authentication needs, or data freshness, leaving gaps for a tool that fetches real-time 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 a single, well-structured sentence that efficiently conveys the tool's purpose, parameter usage, and return data. Every part earns its place, with no redundant or unnecessary information, making it highly concise and 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 the tool's moderate complexity (fetching live data with one parameter) and no annotations or output schema, the description is adequate but incomplete. It covers the basic purpose and return structure, but lacks details on error cases, data formats, or operational constraints, which are important for a real-time data 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?
The schema description coverage is 100%, so the schema already documents the 'id' parameter well with examples. The description adds marginal value by reinforcing the parameter's purpose ('by its id') and providing context on what the id represents (e.g., network identifiers), but does not significantly enhance semantics beyond the schema.
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'), resource ('live station data for a bike-sharing network'), and specific scope ('by its id'). It distinguishes from sibling tools like 'list_networks' (which likely lists networks) and 'search_networks' (which likely searches networks) by focusing on retrieving detailed station data for a specific network.
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 context by specifying 'by its id', suggesting this tool is for when you already know the network identifier. However, it does not explicitly state when to use this tool versus alternatives like 'list_networks' or 'search_networks', nor does it mention prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_networksAInspect
List all bike-sharing networks worldwide. Returns name, id, and location (city, country, lat/lng) for each network.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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. It discloses the tool's behavior by specifying it returns data (name, id, location) and implies a read-only operation, but lacks details on potential limitations like rate limits, pagination, or error handling. The description adds basic context but misses richer behavioral traits.
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 two concise sentences with zero waste: the first states the action and scope, and the second specifies the return data. It's front-loaded with the core purpose and efficiently structured.
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 low complexity (0 parameters, no annotations, no output schema), the description is reasonably complete. It covers what the tool does and what it returns, though it could benefit from more behavioral context (e.g., data freshness, limitations). The lack of output schema is partially compensated by describing return values.
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 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately doesn't discuss parameters, focusing instead on the tool's purpose and output. This meets the baseline for tools with no 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 specific action ('List all bike-sharing networks worldwide') and resource ('bike-sharing networks'), with explicit scope ('worldwide'). It distinguishes from sibling tools by focusing on comprehensive listing rather than retrieval (get_network) or filtered searching (search_networks).
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 context through 'List all... worldwide' and the return data format, suggesting this is for obtaining a complete global overview. However, it doesn't explicitly state when to use this tool versus alternatives like search_networks for filtered results or get_network for detailed information on a specific network.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_networksCInspect
Search bike-sharing networks by city or country name. Returns matching networks with location info.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | City or country name to search for (e.g. "New York", "France", "Berlin") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the search returns matching networks with location info, but doesn't address important aspects like whether this is a read-only operation, potential rate limits, authentication needs, error conditions, or pagination behavior for large result sets.
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 appropriately concise with two sentences that directly state the tool's function and what it returns. It's front-loaded with the core purpose and wastes no 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 search tool with one parameter and no output schema, the description provides basic context about what the tool does and returns. However, it lacks important behavioral details (especially given no annotations) and doesn't help differentiate from sibling tools, leaving gaps in completeness.
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 minimal value beyond what's in the schema - it mentions searching by city or country name, which the schema also specifies with examples.
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 searches bike-sharing networks by location (city or country) and returns matching networks with location info. It specifies the verb 'search' and resource 'bike-sharing networks', but doesn't explicitly differentiate from sibling tools like 'get_network' or 'list_networks'.
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?
No guidance is provided about when to use this tool versus the sibling tools 'get_network' and 'list_networks'. The description implies usage for searching by location, but doesn't specify alternatives, exclusions, or prerequisites.
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!