get_cell
Pack: opencellid · Endpoint: https://gateway.pipeworx.io/opencellid/mcp
Geolocate a cell tower by mobile network identifiers. MCC = Mobile Country Code, MNC = Mobile Network Code, LAC = Location Area Code, cell_id = Cell ID. Returns lat/lon, range, samples, radio type (GSM/UMTS/LTE).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
mcc | number | yes | Mobile Country Code (e.g., 310 = US) |
mnc | number | yes | Mobile Network Code (e.g., 410 = AT&T US) |
lac | number | yes | Location Area Code |
cell_id | number | yes | Cell ID |
radio | string | no | GSM | UMTS | LTE | CDMA (optional disambiguation) |
Example call
curl -X POST https://gateway.pipeworx.io/opencellid/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_cell","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"opencellid": {
"url": "https://gateway.pipeworx.io/opencellid/mcp"
}
}
}
See Getting Started for client-specific install steps.