by nodegis
GeoCalculator helps you convert lat long or coordinates easily and accurately for GIS and spatial analysis, saving time
Performs geospatial calculations including coordinate system conversions between Chinese mapping systems (BD09, GCJ02) and international standards (WGS84, Web Mercator), plus distance and area calculations.
GeoCalculator is a community-built MCP server published by nodegis that provides AI assistants with tools and capabilities via the Model Context Protocol. GeoCalculator helps you convert lat long or coordinates easily and accurately for GIS and spatial analysis, saving time It is categorized under analytics data. This server exposes 3 tools that AI clients can invoke during conversations and coding sessions.
You can install GeoCalculator in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
GeoCalculator is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Strong directory entry: GeoCalculator surfaces stars and publisher context so we could sanity-check maintenance before adopting.
GeoCalculator is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: GeoCalculator is the kind of server we cite when onboarding engineers to host + tool permissions.
GeoCalculator is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated GeoCalculator against two servers with overlapping tools; this profile had the clearer scope statement.
Useful MCP listing: GeoCalculator is the kind of server we cite when onboarding engineers to host + tool permissions.
GeoCalculator has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated GeoCalculator against two servers with overlapping tools; this profile had the clearer scope statement.
GeoCalculator reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Useful MCP listing: GeoCalculator is the kind of server we cite when onboarding engineers to host + tool permissions.
showing 1-10 of 47
这是一个基于 Model Context Protocol (MCP) 的地理处理工具服务器,提供坐标系统转换、距离计算、面积计算等空间分析功能。
"geo-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y"
"@zealgeo/mcp-geo-server"
]
}
支持以下坐标系统之间的转换:
支持的转换方法:
支持的空间计算:
坐标系统转换工具。支持 BD09、GCJ02、WGS84 和 Web Mercator 之间的互相转换。
参数:
method: 转换方法
BD09toGCJ02: 百度坐标系转火星坐标系GCJ02toBD09: 火星坐标系转百度坐标系WGS84toGCJ02: WGS84转火星坐标系GCJ02toWGS84: 火星坐标系转WGS84BD09toWGS84: 百度坐标系转WGS84WGS84toBD09: WGS84转百度坐标系WebMercatortoLngLat: Web墨卡托转经纬度LngLattoWebMercator: 经纬度转Web墨卡托longitude: 经度值latitude: 纬度值计算折线距离。基于 Web Mercator 投影进行平面距离计算。
参数:
coordinates: 折线坐标点数组 [[lon1,lat1], [lon2,lat2],...]unit: 长度单位(meters米[默认]、kilometers千米)coordType: 输入坐标类型(WGS84[默认]、GCJ02、BD09)计算多边形面积。基于 Web Mercator 投影进行平面面积计算。
参数:
coordinates: 多边形坐标点数组 [[lon1,lat1], [lon2,lat2],...]unit: 面积单位(square_meters平方米[默认]、square_kilometers平方公里、hectares公顷)coordType: 输入坐标类型(WGS84[默认]、GCJ02、BD09)百度地图使用的坐标系统,在GCJ02基础上再次加密。
中国国测局制定的地理信息系统坐标系统,是对WGS84进行加密后的坐标系。
GPS原始坐标系统,目前广泛使用的GPS全球卫星定位系统使用的坐标系统。
网页地图使用的投影坐标系统,将球面坐标转换为平面坐标。用于距离和面积计算时可以获得更准确的结果。
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.