npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

gis-dataconversion-mcp

v1.0.3

Published

An MCP server for converting GIS data in different formats

Readme

GIS Data Conversion MCP

smithery badge

Copy of Untitled Design

The GIS Data Conversion MCP is an MCP (Model Context Protocol) server that gives LLMs access to geographic data conversion tools.

This server uses various GIS libraries to allow LLMs to convert between different geographic data formats, coordinate systems, and spatial references.

Features

  • Reverse Geocoding - Convert coordinates to location information
  • WKT/GeoJSON Conversion - Convert between Well-Known Text and GeoJSON formats
  • CSV Conversion - Transform tabular data with coordinates to GeoJSON and vice versa
  • TopoJSON Conversion - Convert between GeoJSON and TopoJSON (topology-preserving format)
  • KML Conversion - Transform KML files to GeoJSON format

Demo

Reverse Geocoding

https://github.com/user-attachments/assets/e21b10c3-bb67-4322-9742-efa8c7d8b332

TopoJSON to GeoJSON

https://github.com/user-attachments/assets/a5d56051-8aed-48bb-8de1-820df8d34fe3

Installation

To use this server with Claude Desktop, you need to configure it in the MCP settings:

For macOS: Edit the file at '~/Library/Application Support/Claude/claude_desktop_config.json'

{
  "mcpServers": {
    "gis-dataconversion-mcp": {
    "command": "npx",
    "args": [
      "-y",
      "a11y-mcp-server"
    ]
   }
  }
}

For Windows: Edit the file at %APPDATA%\Claude\settings\claude_mcp_settings.json

For Linux: Edit the file at ~/.config/Claude/settings/claude_mcp_settings.json Replace /path/to/axe-mcp-server/build/index.js with the actual path to your compiled server file.

Available Tools

wkt_to_geojson

Converts Well-Known Text (WKT) to GeoJSON format.

geojson_to_wkt

Converts GeoJSON to Well-Known Text (WKT) format.

csv_to_geojson

Converts CSV with geographic data to GeoJSON.

Parameters:

  • csv (required): CSV string to convert
  • latfield (required): Field name for latitude
  • lonfield (required): Field name for longitude
  • delimiter (optional): CSV delimiter (default is comma)

geojson_to_csv

Converts GeoJSON to CSV format.

geojson_to_topojson

Converts GeoJSON to TopoJSON format (more compact with shared boundaries).

Parameters:

  • geojson (required): GeoJSON object to convert
  • objectName (optional): Name of the TopoJSON object to create (default: "data")
  • quantization (optional): Quantization parameter for simplification (default: 1e4, 0 to disable)

topojson_to_geojson

Converts TopoJSON to GeoJSON format.

Parameters:

  • geojson (required): GeoJSON object to convert
  • objectName (optional): Name of the TopoJSON object to create (default: "data")

kml_to_geojson

Converts KML to GeoJSON format.

coordinates_to_location

Converts latitude/longitude coordinates to location name using reverse geocoding.

Dependencies

  • @modelcontextprotocol/sdk
  • wellknown
  • csv2geojson
  • topojson-client
  • topojson-server
  • @tmcw/togeojson
  • xmldom