- Home
- MCP servers
- Geolocation
Geolocation
- other
0
GitHub Stars
other
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"jackyang25-geolocation-mcp-server": {
"command": "uvx",
"args": [
"mcp-server-geolocation"
],
"env": {
"WALKSCORE_API_KEY": "YOUR_API_KEY"
}
}
}
}You can run and configure a geolocation MCP server that provides nearby transit stops and walkability scores. It integrates WalkScore data to let you query walkability, transit accessibility, and bikeability for addresses or coordinates, enabling location-aware features in your applications.
How to use
You use this MCP server by running it locally or in your environment and then calling its two main tools from your MCP-enabled client. The get_transit_stops tool returns nearby transit stops for a given location, including routes and distances. The get_walkscore tool returns WalkScore, TransitScore, and BikeScore for a location. You can provide an address, latitude/longitude, or both for best accuracy.
Available tools
get_transit_stops
Find nearby transit stops for a location. Input is latitude and longitude; output is a list of stops with routes and distances.
get_walkscore
Retrieve WalkScore, TransitScore, and BikeScore for a location. Accepts an address string, coordinates, or both for improved accuracy.