City Bikes
live TransportTravelLive bike-sharing availability and station data for hundreds of networks worldwide from CityBik.es
Tools
list_networks Browse all bike-sharing networks worldwide. Returns network name, ID, city, country, and coordinates for each network.
No parameters required.
Try it
get_network Check live bike availability at stations in a specific network (e.g., "citi-bike-nyc"). Returns station locations, available bikes, and empty slots.
No parameters required.
Try it
search_networks Find bike-sharing networks by city or country name. Returns matching networks with their locations and IDs.
No parameters required.
Try it
citybikes_networks_near Find bike-share networks near a lat/lon: "bike share near me", "find bike rental network by location", "citybikes nearby coordinates". Returns the closest networks sorted by distance with their id, na
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/citybikes/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' 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":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("list_networks", {}); // Or ask in plain English:
const answer = await px.ask("live bike-sharing availability and station data for hundreds of networks worldwide from citybik");