loading…
Search for a command to run...
loading…
Geolocation AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Geolocation AI - MCP server providing AI-powered tools and automation by MEOK AI Labs
Geolocation Ai MCP provides AI-powered tools via the Model Context Protocol (MCP).
| Tool | Description |
|---|---|
geolocate_ip |
Get approximate location from IP address. |
calculate_distance |
Calculate distance between two coordinates using Haversine formula. |
parse_coordinates |
Parse location string into lat/lon coordinates. |
timezone_from_coords |
Determine timezone from coordinates using brute-force offset matching. |
ip_to_coordinates |
Convert IP address to approximate coordinates without full geolocation. |
pip install meok-geolocation-ai-mcp
Add to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"geolocation-ai-mcp": {
"command": "python",
"args": ["-m", "meok_geolocation_ai_mcp.server"]
}
}
}
from mcp.server.fastmcp import FastMCP
# This server exposes 5 tool(s) via MCP
# See server.py for full implementation
MIT © MEOK AI Labs
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"geolocation-ai-mcp": {
"command": "npx",
"args": []
}
}
}