Charlotte-Mecklenburg MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| geocodeA | Geocode a free-form address to lat/lon using the Esri World geocoder. Args: address: Free-form address string, e.g. "2437 Remount Rd, Charlotte, NC". Returns: Dict with matched address, lat, lon, match score, and a summary. |
| list_datasetsA | Search the Charlotte/Mecklenburg ArcGIS endpoint registry. Use this to discover which layer to query before calling a spatial/attribute tool -- e.g. search "waste" to find the solid waste collection routes layer, or "parcel" for parcel/zoning data. Args: keyword: Case-insensitive substring matched against service name, layer name, and field names/aliases. Omit to browse. source: Optional filter to one of "city-onprem", "county-onprem", "city-agol", "county-agol". limit: Maximum number of results to return (default 25). Returns: Dict with a "results" list (service, service_type, layer_name, url, geometry_type, field_count, broken) and a "summary" line. |
| lookup_parcelA | Look up Mecklenburg County parcel(s) from the ParcelStatus layer. Provide exactly one way to locate the parcel: an Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude in decimal degrees (WGS84). Requires Returns:
Dict with |
| get_zoningA | Get zoning classification for a parcel from Parcel_Zoning_Lookup. Resolves a parcel (by address, lat/lon, or a known Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude in decimal degrees (WGS84). Requires Returns:
Dict with |
| search_tax_foreclosuresA | Search active Mecklenburg County tax foreclosures. All filters are optional and combined with AND; omit all to list
foreclosures broadly (results are still capped by Args: zip: 5-digit ZIP code, e.g. "28208". nhood: Neighborhood/subdivision name substring, e.g. "WESTCHESTER". status: Foreclosure status value, if populated for the record. limit: Max rows to return (default: all matches). Returns:
Dict with |
| get_trash_scheduleA | Look up garbage, recycling, and yard waste collection schedule. Provide either Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| crime_nearA | CMPD calls-for-service (patrol + domestic violence) near a point. Provide either Args:
address: Free-form address, e.g. "600 E 4th St, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| homicides_nearA | Homicide incidents near a point, from the point-level CMPD_Homicide layer. Provide either Args:
address: Free-form address, e.g. "600 E 4th St, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| violent_crime_nearA | CMPD violent-crime offense counts (Homicide/Rape/Robbery/Assault/...) near a point. Provide either Args:
address: Free-form address, e.g. "600 E 4th St, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| service_requests_nearA | 311 service requests near a point, from the point-level ServiceRequests311 layer. Provide either Args:
address: Free-form address, e.g. "600 E 4th St, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| get_planning_areaA | Look up the community planning area (and CCW planning region) at a point. Provide either Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| rezonings_nearA | Find approved rezoning petitions near a point. Provide either Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| area_plans_atA | Find adopted area/small-area plan boundaries containing a point. Provide either Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| bike_lanes_nearA | Find bike lanes near an address or coordinate. Args: address: Free-form address, e.g. "600 E 4th St, Charlotte, NC". Provide this OR lat/lon. lat: Latitude, used with lon instead of address. lon: Longitude, used with lat instead of address. radius_m: Search radius in meters (default 800). Returns: Dict with the resolved location, a list of bike lane segments (street, lane type, side of street, width, year built, notes), and a "summary" sentence. |
| ada_features_nearA | Find ADA pedestrian infrastructure near an address or coordinate. Covers curb ramps, on-street accessible parking spaces, and accessible pedestrian signals from the city's ADA self-evaluation dataset. Args: address: Free-form address. Provide this OR lat/lon. lat: Latitude, used with lon instead of address. lon: Longitude, used with lat instead of address. radius_m: Search radius in meters (default 400). feature_type: Which ADA feature types to return: "all" (default), "ramps", "parking", or "signals". Returns: Dict with the resolved location, lists under "ramps", "parking", and/or "signals" (only the requested types are populated), and a "summary" sentence. |
| cip_projects_nearA | Find Mecklenburg County Capital Improvement Projects (stormwater) near an address or coordinate. Covers Charlotte-Mecklenburg Storm Water Services projects: drainage improvements, stream & wetland restoration, and pollutant removal — both active and completed. Args: address: Free-form address. Provide this OR lat/lon. lat: Latitude, used with lon instead of address. lon: Longitude, used with lat instead of address. radius_m: Search radius in meters (default 1600). Returns: Dict with the resolved location, a list of CIP projects (name, status, phase, type, fiscal-year-complete), and a "summary". |
| cats_projects_nearA | Find CATS (Charlotte Area Transit System) capital projects near an address or coordinate. Queries both the point layer (e.g. stations) and the line layer (e.g. transit corridors/tracks) and merges the results. Args: address: Free-form address. Provide this OR lat/lon. lat: Latitude, used with lon instead of address. lon: Longitude, used with lat instead of address. radius_m: Search radius in meters (default 1600). Returns: Dict with the resolved location, a list of CATS projects (name, description, funding status, geometry type), and a "summary". |
| brownfields_nearA | Find recorded brownfield sites within a radius of a location. Queries the Mecklenburg County recorded brownfields point layer (NC
Brownfields Program). Provide either Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| watershed_atA | Look up the named watershed/basin containing a location. Point-in-polygon query against the City of Charlotte "Watershed Basins"
layer, which covers all of Mecklenburg County. Provide either
Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| tree_canopy_atA | Get tree canopy stats for the area containing a location. Point-in-polygon query against the joint City of Charlotte / TreesCharlotte
2022 tree canopy assessment layer, which stacks multiple geography levels
(Neighborhood Profile Area, Council District, Jurisdiction, County, ...)
for the same point. The finest available level is returned as Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
| battery_recycling_sites_nearA | Find battery/household-hazardous-waste recycling drop-off sites near a location. Queries the Mecklenburg County recycling drop-off centers point layer
(batteries are one of several accepted materials at these sites; there
is no battery-specific kiosk layer published). Provide either
Args:
address: Free-form address, e.g. "2437 Remount Rd, Charlotte, NC".
lat: Latitude, used with Returns:
Dict with |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Lavoiedavidw/Charlotte-City-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server