Integrations
GISデータ変換MCP
GIS データ変換 MCP は、LLM に地理データ変換ツールへのアクセスを提供する MCP (モデル コンテキスト プロトコル) サーバーです。
このサーバーはさまざまな GIS ライブラリを使用して、LLM がさまざまな地理データ形式、座標系、空間参照間で変換できるようにします。
特徴
- 逆ジオコーディング- 座標を位置情報に変換する
- WKT/GeoJSON 変換- Well-Known Text 形式と GeoJSON 形式間の変換
- CSV/GeoJSON 変換- 座標を含む表形式データを GeoJSON に変換します (逆も同様)
- TopoJSON/GeoJSON 変換- GeoJSON と TopoJSON (トポロジー保存形式) 間の変換
- KML/GeoJSON 変換- KML ファイルを GeoJSON 形式に変換します
デモ
逆ジオコーディング
https://github.com/user-attachments/assets/e21b10c3-bb67-4322-9742-efa8c7d8b332
TopoJSON から GeoJSON へ
https://github.com/user-attachments/assets/a5d56051-8aed-48bb-8de1-820df8d34fe3
インストール
このサーバーを Claude Desktop で使用するには、MCP 設定で構成する必要があります。
macOSの場合: '~/Library/Application Support/Claude/claude_desktop_config.json'
にあるファイルを編集します。
Windowsの場合: %APPDATA%\Claude\settings\claude_mcp_settings.json
にあるファイルを編集します。
Linux の場合: ~/.config/Claude/settings/claude_mcp_settings.json
にあるファイルを編集します/path/to/axe-mcp-server/build/index.js
コンパイルされたサーバー ファイルへの実際のパスに置き換えます。
利用可能なツール
wkt_to_geojson
Well-Known Text (WKT) を GeoJSON 形式に変換します。
geojson_to_wkt
GeoJSON を Well-Known Text (WKT) 形式に変換します。
csv_to_geojson
地理データを含む CSV を GeoJSON に変換します。
パラメータ:
csv
(必須): 変換するCSV文字列latfield
(必須): 緯度のフィールド名lonfield
(必須): 経度のフィールド名delimiter
(オプション):CSV区切り文字(デフォルトはカンマ)
geojson_to_csv
GeoJSON を CSV 形式に変換します。
geojson_to_topojson
GeoJSON を TopoJSON 形式に変換します (境界を共有することでよりコンパクトになります)。
パラメータ:
geojson
(必須): 変換するGeoJSONオブジェクトobjectName
(オプション): 作成する TopoJSON オブジェクトの名前 (デフォルト: "data")quantization
(オプション):簡略化のための量子化パラメータ(デフォルト:1e4、無効にする場合は0)
topojson_to_geojson
TopoJSON を GeoJSON 形式に変換します。
パラメータ:
geojson
(必須): 変換するGeoJSONオブジェクトobjectName
(オプション): 作成する TopoJSON オブジェクトの名前 (デフォルト: "data")
kml_to_geojson
KML を GeoJSON 形式に変換します。
geojson_to_kml
GeoJSON を KML 形式に変換します。
場所の座標
逆ジオコーディングを使用して緯度/経度座標を場所の名前に変換します。
依存関係
- @モデルコンテキストプロトコル/sdk
- よく知られている
- csv2geojson
- topojsonクライアント
- topojsonサーバー
- @tmcw/togeojson
- XMLDOM
You must be authenticated.
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Tools
LLM に地理データ変換ツールへのアクセスを提供し、WKT、GeoJSON、CSV、TopoJSON、KML などのさまざまな形式間の変換や、逆ジオコーディングの実行を可能にする MCP サーバー。
Related Resources
Related MCP Servers
- AsecurityAlicenseAqualityAn MCP server that enables LLMs to perform blockchain operations on the Base network through natural language commands, including wallet management, balance checking, and transaction execution.Last updated -441TypeScriptMIT License
- -securityAlicense-qualityMCP server that enables LLMs to interact with Tripadvisor API, supporting location data, reviews, and photos through standardized MCP interfacesLast updated -PythonMIT License
- -security-license-qualityAn MCP server that enables LLMs to autonomously reverse engineer applications through Cutter, allowing them to decompile binaries, analyze code, and rename methods programmatically.Last updated -1PythonApache 2.0
- -securityFlicense-qualityA Python-based MCP server that provides coordinate conversion between latitude/longitude and UTM/TWD97, along with various civil engineering calculation tools for LLM and AI application integration.Last updated -1Python