zonerMCP
Verified Safeby melbamorph
Overview
This server acts as a Model Context Protocol (MCP) tool wrapper for an ArcGIS FeatureServer, enabling AI agents to look up zoning information by coordinates or address for a specified location.
Installation
npm startEnvironment Variables
- ARCGIS_BASE_URL
Security Notes
The project demonstrates good security practices by explicitly requiring `ARCGIS_BASE_URL` to be stored as a secret (environment variable) and preventing hardcoding. It includes payload validation with configurable limits and basic SQL injection prevention (`replace(/'/g, "''")`) for address queries. CORS is enabled for all origins, which is acceptable for a public API tool. There are no obvious 'eval' or direct arbitrary command execution patterns in the provided source.
Similar Servers
gis-mcp
Enables Large Language Models (LLMs) to perform comprehensive geospatial analysis, transformations, and data operations using popular GIS libraries.
boilerplate-mcp-server
This boilerplate provides a production-ready foundation for developing custom Model Context Protocol (MCP) servers in TypeScript to connect AI assistants with external APIs and data sources, exemplified by an IP geolocation lookup tool.
mcp-typescript-template
This server acts as a template for building remote Model Context Protocol (MCP) servers using TypeScript, handling MCP tool registration and session management over HTTP.
mcp-agent-starter-kit
A starter kit for building custom AI agents using the Model Context Protocol (MCP) to connect real-world tools with Large Language Models (LLMs).