Skip to main content
Glama
public-safety-api

publicsafetyapi-mcp

Official

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.2

  • Disambiguation4/5

    The tools are mostly distinct: find_stations_near_address vs find_stations_near_coordinates differ only by input method, but both are clearly explained. get_jurisdiction returns nearby agencies alongside place info, which slightly overlaps with find_stations, but the descriptions explicitly differentiate use cases.

    Naming Consistency5/5

    All tool names follow a consistent verb_noun pattern in snake_case (find_, get_, list_). The action verbs are semantically appropriate, and naming conventions are uniform throughout.

    Tool Count5/5

    With 6 tools, the server is well-scoped for a public safety facility lookup API. Each tool serves a distinct query need (proximity, detail, search, jurisdiction, summary), and none are redundant.

    Completeness5/5

    The read-only query surface covers the expected operations: proximity search by address or coordinates, detail by ID, filtered/paginated listing, jurisdiction lookup, and state-level aggregation. No critical gaps appear for the stated purpose.

  • Average 4.5/5 across 6 of 6 tools scored. Lowest: 3.9/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 4 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the basic operation and does not mention output format, error handling, read-only nature, or other behavioral traits.

    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?

    The description is extremely concise: a single purpose sentence plus a parameter breakdown. It is front-loaded and every sentence earns its place with no waste.

    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?

    For a simple single-parameter tool, the description sufficiently covers the purpose and parameter semantics. It lacks explicit return format details, but the phrase 'facility counts by type' implies the output structure, making it reasonably complete.

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

    Parameters5/5

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

    The schema provides only 'state_code' with no description. The description adds critical semantics: 'two-letter state abbreviation, e.g. "CA"', fully clarifying the parameter format and example.

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

    Purpose5/5

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

    The description clearly states the tool retrieves facility counts by type (fire, police, EMS, hospital) for a state. This specific verb-resource-scope combination distinguishes it from sibling tools that focus on station lookups, lists, and jurisdictions.

    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 description implies use for state-level summary data but does not explicitly state when to use it versus alternatives, nor provide exclusions. It is adequate for a simple tool but lacks direct guidance.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full burden and does a good job disclosing core behaviors: sorting by distance, optional type filtering with comma-separation, and parameter ranges. It does not mention potential error handling or output structure, but the primary operational traits are covered.

    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?

    The description is tightly focused: a single sentence defining purpose followed by a clean, well-formatted arg list. Every line provides necessary information with no filler, making it easy to parse.

    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?

    For a tool with no output schema and no annotations, the description covers all parameters, the main behavior, and even edge constraints (radius/limit ranges). It stops short of a 5 by not describing the return structure or edge-case behavior (e.g., no results), but it is sufficient for selecting and invoking the tool.

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

    Parameters5/5

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

    The input schema has no descriptions for its parameters (0% coverage), so the description fully compensates by explaining each one with examples, allowed values, defaults, and ranges. This adds significant meaning beyond the raw schema.

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

    Purpose5/5

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

    The description states a specific action ('Find') and resource ('public safety facilities') with clear scope ('nearest to a US street address') and even includes sorting behavior ('sorted by distance'). This clearly distinguishes it from sibling tools like find_stations_near_coordinates or get_station.

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

    Usage Guidelines4/5

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

    The description clearly implies the tool is for address-based queries ('US street address'), providing strong context for when to choose it over the coordinates-based sibling. However, it does not explicitly name alternatives or exclusions, so it stops short of a 5.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full burden. It transparently lists the return values: 'place name, state, Census GEOID, boundary type, and a likelyAgencies list.' It also discloses that address is 'geocoded automatically' and specifies the lat/lng coordinate system (WGS84). It stops short of detailing failure modes or the exact structure of likelyAgencies, but for a read-only lookup it is adequately transparent.

    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?

    The description is well-structured: a purpose paragraph, a usage paragraph, and a concise Args list. Every sentence adds value. It front-loads the core functionality, making it easy for an agent to quickly grasp the tool's purpose.

    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?

    Despite no output schema or annotations, the description covers the tool's purpose, use cases, parameters, and return values. It is complete enough for an agent to invoke correctly. Minor gaps include lack of error-handling details (e.g., what happens if neither/nor both inputs are provided) and deeper structure of the likelyAgencies list, but these are not critical for a basic lookup tool.

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

    Parameters5/5

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

    Schema description coverage is 0%, so the description must compensate. It does so thoroughly with an Args section: 'address: Full US street address (geocoded automatically)', 'lat: Latitude (WGS84) — use with lng instead of address', 'lng: Longitude (WGS84) — use with lat instead of address'. It also clarifies the mutual exclusivity of address vs. lat/lng, which is a constraint not apparent from the schema alone.

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

    Purpose5/5

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

    The description opens with a specific verb and resource: 'Determine which Census-defined place (city/town) contains a location, and which agencies most likely respond there.' It clearly distinguishes itself from sibling tools like find_stations_near_address, which focus on station discovery, whereas this tool identifies jurisdiction and responders.

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

    Usage Guidelines4/5

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

    The description states practical use cases: 'Useful for routing, coverage reporting, or working out which local government and responders serve an address.' It does not explicitly name alternatives or exclusions, but the purpose is clear enough that an agent can infer when to use this tool versus the sibling station-related tools.

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

  • Behavior4/5

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

    With no annotations, the description carries the transparency burden. It discloses what the response includes (address, phone, coordinates, and for hospitals beds, trauma level, ownership) and gives an ID format example. It doesn't mention error handling or auth, but for a non-destructive retrieval tool, the main behavioral traits are adequately conveyed.

    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?

    The description is compact and front-loaded. The first sentence states the purpose and key scope, and the Args line efficiently documents the parameter. No filler or redundancy.

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

    Completeness5/5

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

    For a single-parameter get-by-ID tool with no output schema, the description is complete: it explains what the tool does, what data is returned, and the expected ID format. The sibling context clarifies when this tool fits, and no additional behavioral information is necessary.

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

    Parameters4/5

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

    The schema provides only the name and type of station_id (string). The description adds meaning by explaining it as a facility ID and giving a concrete example ('fire_CA_12345'). This compensates for the 0% schema description coverage, though only one parameter exists.

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

    Purpose5/5

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

    The description clearly states a specific action (get full record) on a specific resource (one facility by ID), and lists the included fields (address, phone, coordinates, and hospital-specific data). This distinguishes it from siblings like find_stations_near_address or list_stations, which serve different lookup or listing purposes.

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

    Usage Guidelines4/5

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

    The context is clear: use this tool when you have a facility ID and need the full record. It doesn't explicitly name alternatives or state when not to use it, but the implied scenario (direct ID lookup) is evident from the description and sibling tool names. Lacks explicit exclusion, so not a 5.

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

  • Behavior4/5

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

    With no annotations, the description carries the burden. It discloses the read-only nature via 'find', the behavior of skipping geocoding, and sorted-by-distance output. It does not mention error handling or output format, but for a straightforward lookup, this is adequate. No contradiction with annotations (none provided).

    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?

    The description is compact: two introductory sentences plus a clean parameter list. Every line earns its place, with purpose well front-loaded and no redundant fluff. The Args list is necessary given the schema's lack of descriptions.

    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?

    The tool is simple, yet the description covers purpose, parameter semantics, and usage guidance. It lacks explicit output structure or edge-case behavior (e.g., no results), but given the absence of an output schema and the straightforward nature of a find operation, it is sufficiently complete. The sibling context further clarifies its niche.

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

    Parameters5/5

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

    The schema has zero field descriptions (coverage 0%), so the Args section fully compensates by explaining each parameter: lat/lng as WGS84, type with allowed values, radius_miles range 0.1–50 with default 10, and limit range 1–25 with default 5. This adds substantial meaning beyond raw types.

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

    Purpose5/5

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

    The description opens with a specific verb and resource: 'Find the public safety facilities nearest to a latitude/longitude, sorted by distance.' This clearly distinguishes it from sibling find_stations_near_address by noting it skips geocoding, making the purpose explicit and differentiated.

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

    Usage Guidelines5/5

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

    The description explicitly states when to use this tool: 'Use this when you already have coordinates; it skips geocoding and is faster than find_stations_near_address.' This names the exact alternative and provides a clear condition, plus a performance rationale.

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

  • Behavior4/5

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

    With no annotations, the description carries the full burden. It discloses that the tool lists or searches (non-mutating), supports comma-separated types, and explains pagination via limit and offset. It does not describe the response shape or error behavior, but the read-only nature and key constraints are clear.

    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?

    The description is front-loaded with a clear purpose, followed by two concise usage examples and a structured Args block. Every sentence adds value, with no fluff or repetition.

    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?

    The description covers all six parameters, gives usage examples, and references a sibling tool. It lacks return-value details (no output schema exists) and only differentiates from one of five siblings, but for a straightforward list/search tool it is highly complete.

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

    Parameters5/5

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

    The input schema has zero descriptions, but the Args section fully compensates: each parameter is documented with types, formats, allowed values, defaults, and pagination details. This goes well beyond the schema's raw property names.

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

    Purpose5/5

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

    Clearly states it lists or searches public safety facilities with specific filters (type, state, name, ZIP). The verb 'list or search' and the resource are explicit, and the description differentiates from a sibling by saying 'For "what's nearest to X", use find_stations_near_address instead.'

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

    Usage Guidelines5/5

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

    Provides concrete examples of when to use this tool ('how many fire stations are in Kansas') and explicitly points to an alternative tool for proximity queries. This gives clear context and an exclusion, satisfying the 'when/when-not/alternatives' criterion.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

publicsafetyapi-mcp MCP server

Copy to your README.md:

Score Badge

publicsafetyapi-mcp MCP server

Copy to your README.md:

Latest Blog Posts

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/public-safety-api/publicsafetyapi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server