Skip to main content
Glama
ajwann

Charlotte Open Data MCP Server

by ajwann

Police incidents near a location

get_crime_near
Read-onlyIdempotent

Find recent CMPD police incident reports near any Mecklenburg County address. Get counts by offense type and the newest reports to check crime around a location.

Instructions

CMPD police incident reports near a location: counts by offense and the latest reports.

Answers "is there much crime near 123 Main St?" or "any car break-ins near me lately?".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNoHow many days back to look.
limitNoMaximum number of records to return.
offenseNoOptional offense filter, e.g. 'burglary', 'motor vehicle theft', 'assault', 'vandalism'.
locationYesA street address in Mecklenburg County, e.g. '600 E 4th St, Charlotte, NC 28202', or coordinates as 'latitude,longitude', e.g. '35.2271,-80.8431'.
radius_milesNoRadius in miles.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNo
sinceNoEarliest date included (local time).
recordsYes
locationNo
breakdownNoCounts of all matching records per value.
breakdown_byNo
radius_milesNo
total_matchingYesRecords matching the filters; may exceed returned.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotations already declare readOnly/idempotent/destructive=false/openWorld, so the safety profile is fully covered. The description adds that results combine aggregate offense counts with the most recent reports and identifies the data source (CMPD), but says nothing about data latency, rate limits, or geographic coverage limits beyond what the schema states.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tightly written sentences: the first front-loads what the tool returns, the second supplies natural-language query examples. Zero filler, and the most decision-relevant information (proximity-based incident data) comes first.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With a rich annotation set, 100% schema coverage, and an existing output schema, the description need not explain return values or safety. It is nearly complete, with the only material gap being the absent contrast against summarize_crime, which an agent must resolve on its own.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so every parameter (days, limit, offense, location, radius_miles) is already documented in-schema with defaults, bounds and examples. The description adds only indirect hints (e.g. 'car break-ins' maps loosely to the offense filter, 'lately' to days), so a baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource (retrieves CMPD police incident reports near a location) and even specifies the return shape: counts by offense plus the latest individual reports. The proximity scope ('near a location') implicitly separates it from the aggregate sibling summarize_crime, but it never names or contrasts that sibling explicitly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The two example questions ('is there much crime near 123 Main St?', 'any car break-ins near me lately?') give concrete usage context and hint at the days/offense parameters. However, there is no explicit when-not-to-use guidance and no routing between this tool and summarize_crime or the other *_near siblings, leaving the agent to infer the boundary from phrasing alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.