OpenCellID
live GeoTelecom50M+ cell towers — geolocate by MCC/MNC/LAC/CellID or list towers in a bounding box.
2 tools
0ms auth
free tier 50 calls/day
Tools
get_cell
required: mcc, mnc, lac, cell_id Geolocate a tower by MCC/MNC/LAC/CellID.
Parameters
Name Type Description
mcc req number Mobile Country Code mnc req number Mobile Network Code lac req number Location Area Code cell_id req number Cell ID radio opt string GSM | UMTS | LTE | CDMA Try it
Response
cells_in_area
required: bbox List towers in a bounding box.
Parameters
Name Type Description
bbox req string "lat_sw,lon_sw,lat_ne,lon_ne" mcc opt number Restrict to a country mnc opt number Restrict to a network limit opt number Max records 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/opencellid/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/opencellid/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_cell","arguments":{"mcc": 10, "mnc": 10, "lac": 10, "cell_id": 1}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("get_cell", {"mcc":"example","mnc":"example","lac":"example","cell_id":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("50m+ cell towers — geolocate by mcc/mnc/lac/cellid or list towers in a bounding box");