what3words
liveGeographywhat3words geocoding API — convert coordinates to/from 3-word addresses and autocomplete partial inputs. BYO key.
4tools
0msauth
free tier50 calls/day
Tools
coords_to_wordsrequired: latitude, longitudelat/lon → "word.word.word".
Parameters
NameTypeDescription
latitudereqnumberLatitudelongitudereqnumberLongitudelanguageoptstring2-letter language codeTry it
Response
words_to_coordsrequired: words"word.word.word" → lat/lon + bbox.
Parameters
NameTypeDescription
wordsreqstringThree-word addressTry it
Response
autosuggestrequired: inputRanked completions for a partial three-word input.
Parameters
NameTypeDescription
inputreqstringPartial three-word stringn_resultsoptnumber1-100focus_latitudeoptnumberBias toward this latitudefocus_longitudeoptnumberBias toward this longitudecountryoptstringISO country code filterlanguageoptstring2-letter languageTry it
Response
list_languagesSupported languages for word output.
No parameters required.
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/what3words/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/what3words/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"coords_to_words","arguments":{"latitude": 37.7749, "longitude": -122.4194}}}'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("coords_to_words", {"latitude":"example","longitude":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("what3words geocoding api — convert coordinates to/from 3-word addresses and autocomplete partial inputs");