list_networks
Pack: citybikes · Endpoint: https://gateway.pipeworx.io/citybikes/mcp
Browse all bike-sharing networks worldwide. Returns network name, ID, city, country, and coordinates for each network.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/citybikes/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_networks","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_networks', {});
Response shape
Always returns: count, networks
| Field | Type | Description |
|---|---|---|
count | integer | Total number of networks returned |
networks | array | Array of bike-sharing networks |
Full JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "integer",
"description": "Total number of networks returned"
},
"networks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Network identifier"
},
"name": {
"type": "string",
"description": "Network name"
},
"city": {
"type": "string",
"description": "City where network operates"
},
"country": {
"type": "string",
"description": "Country where network operates"
},
"latitude": {
"type": "number",
"description": "Network location latitude"
},
"longitude": {
"type": "number",
"description": "Network location longitude"
}
},
"required": [
"id",
"name",
"city",
"country",
"latitude",
"longitude"
]
},
"description": "Array of bike-sharing networks"
}
},
"required": [
"count",
"networks"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"citybikes": {
"url": "https://gateway.pipeworx.io/citybikes/mcp"
}
}
}
See Getting Started for client-specific install steps.