Install
openclaw skills install pipeworx-ukpoliceUK street-level crime data — reported crimes by location, police force directory, and case outcomes from data.police.uk
openclaw skills install pipeworx-ukpoliceStreet-level crime reports from every police force in England, Wales, and Northern Ireland. Query crimes near a location for a specific month, browse all police forces, and look up case outcomes.
| Tool | Description |
|---|---|
get_crimes | Street-level crimes near a lat/lng for a given month (YYYY-MM format) |
get_forces | List all UK police forces |
get_outcomes | Case outcomes (charged, cautioned, no further action, etc.) near a location |
curl -s -X POST https://gateway.pipeworx.io/ukpolice/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_crimes","arguments":{"lat":51.5007,"lng":-0.1246,"month":"2024-01"}}}'
Returns crime category, location (street name and coordinates), outcome status, and unique ID.
{
"mcpServers": {
"pipeworx-ukpolice": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/ukpolice/mcp"]
}
}
}