trueway-geocoding

trueway-geocoding

3.5

The TrueWay Geocoding MCP Server provides tools for forward and reverse geocoding with global coverage and multi-language support.

The TrueWay Geocoding MCP Server is a robust solution for converting addresses into geographic coordinates and vice versa. It supports multiple languages and offers global coverage, making it suitable for applications that require precise location data. The server is designed to facilitate seamless integration of geocoding capabilities into various applications, providing reliable and efficient location-based services.

Features

  • Global Coverage: Access to geocoding services worldwide.
  • Forward Geocoding: Convert addresses into geographic coordinates.
  • Reverse Geocoding: Convert geographic coordinates into human-readable addresses.
  • Multi-Language Support: Return results in different languages using ISO 639-1 codes.

MCP Tools

  • Geocoding (Geocode): Converts street addresses into geographic coordinates.
  • Reverse Geocoding (ReverseGeocode): Converts geographic coordinates into a human-readable address.

Usage with Different Platforms

python

python
import requests

url = 'https://api.trueway.com/geocode'
params = {
    'address': '1600 Amphitheatre Parkway, Mountain View, CA',
    'language': 'en'
}
response = requests.get(url, params=params)
data = response.json()
print(data)

javascript

javascript
fetch('https://api.trueway.com/geocode?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&language=en')
  .then(response => response.json())
  .then(data => console.log(data));