City Bikes
live TravelLive bike-sharing availability and station data for hundreds of networks worldwide from CityBik.es
3 tools
0ms auth
free tier 50 calls/day
Tools
list_networks List all bike-sharing networks worldwide. Returns name, id, and location (city, country, lat/lng) for each network.
No parameters required.
Try it
Response
get_network
required: id Get live station data for a bike-sharing network by its id. Returns network name and all stations with bike availability, empty slots, and coordinates.
Parameters
Name Type Description
id req string Network id (e.g. "citi-bike-nyc", "velib" for Paris, "nextbike-berlin") Try it
Response
search_networks
required: query Search bike-sharing networks by city or country name. Returns matching networks with location info.
Parameters
Name Type Description
query req string City or country name to search for (e.g. "New York", "France", "Berlin") Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/citybikes/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/citybikes/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"list_networks","arguments":{}}}'