Skip to main content
Glama
mindwear-capitian

Local San Antonio MCP

Local San Antonio MCP

License: Apache 2.0 Node MCP

Your AI's local guide to San Antonio. A Model Context Protocol (MCP) server giving Claude (and any MCP client) plain-English access to official San Antonio-area public data — no API keys, no logins.

License: Open source under Apache License 2.0 — free to use, modify, and build on, including commercially. Please keep the NOTICE attribution when you redistribute. Built by: Ed Neuhaus. Source: https://github.com/mindwear-capitian/local-san-antonio-mcp Part of a family: local-city-mcp-template — the spec, the template, and the full list of cities built so far.

🚧 Early-stage. Three tools live today (weather alerts, school ratings, 311). More San Antonio/Bexar-area civic and property data planned — see CONTRIBUTING.md.


Install

Add to your Claude Desktop config:

// claude_desktop_config.json
{
  "mcpServers": {
    "local-san-antonio": {
      "command": "npx",
      "args": ["-y", "github:mindwear-capitian/local-san-antonio-mcp"]
    }
  }
}

Restart Claude Desktop. No API keys required for any tool.

Claude Code

claude mcp add local-san-antonio npx -y github:mindwear-capitian/local-san-antonio-mcp

Related MCP server: city-data-mcp

Try it

  • "Is there an active weather alert for San Antonio right now?"

  • "What's the TEA rating for San Antonio ISD?"

  • "Show me A-rated elementary schools in Bexar county."

  • "Any open animal services 311 calls in council district 1?"


Tools (3 live)

Tool

What it does

san_antonio_nws_alerts

Active National Weather Service alerts (severe thunderstorm, tornado, flood, heat, freeze, fire weather) for a San Antonio location. Defaults to central San Antonio when no address given.

san_antonio_tea_schools

Texas Education Agency school lookup — A-F accountability ratings + AskTED campus directory (statewide dataset). Search by campus, district, county, or city. Example districts: San Antonio ISD, North East ISD, Northside ISD.

san_antonio_311

San Antonio 311 service calls (streets, animal services, code compliance, etc). Filter by category, type, department, status, or council district.

about

Version + capability summary.

Sources of Truth

Domain

Source

Weather alerts

National Weather Service (api.weather.gov)

School ratings

Texas Education Agency Statewide Accountability Ratings 2022-2023 + AskTED directory (data.texas.gov) — statewide dataset, same source used by local-austin-mcp

311 service calls

City of San Antonio Open Data (data.sanantonio.gov), via its ArcGIS Hub-hosted FeatureServer

Geocoding

U.S. Census geocoder

Architecture

Node.js (ES modules), @modelcontextprotocol/sdk over stdio. Built from local-city-mcp-template — see that repo's STANDARD.md for the spec (hard rules, tool contract, testing bar, licensing pattern) this server follows. Every response includes a source_url.

Contact

Built by Ed Neuhaus. Contributions welcome — see CONTRIBUTING.md.

Available Tools

4 tools
aboutA
Read-onlyIdempotent

Show information about this MCP server, including its name, version, data sources, license, and the original author. Always available. (via Local San Antonio MCP -- https://edneuhaus.com)

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already indicate readOnly, idempotent, and non-destructive behavior. The description adds context about availability ('Always available') and specifies the content returned, which is useful beyond the annotations.

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 a single, focused sentence that front-loads the verb and resource. It includes all necessary information without waste, and the URL adds provenance not cluttering the core.

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 simple informational tool with no parameters and strong annotations, the description comprehensively explains what the tool returns and that it is always available. No output schema is needed since the content is enumerated.

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 tool takes zero parameters, so the schema has no gaps. Baseline for no params is 4, and the description doesn't need to add parameter details.

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?

Description clearly states the tool's purpose: 'Show information about this MCP server' with specific details (name, version, data sources, license, original author). It distinguishes itself from sibling data tools by focusing on server metadata.

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 phrase 'Always available' provides clear context for when to use the tool, implying it can be called without prerequisites. While it doesn't explicitly name alternatives, the sibling tools are clearly different in scope, so the guidance is sufficient.

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

san_antonio_311A
Read-onlyIdempotent

Search San Antonio 311 service calls (streets, animal services, code compliance, and other non-emergency city services). Filter by category, type, department, status, or council district. Authoritative source: City of San Antonio Open Data.

ParametersJSON Schema
NameRequiredDescriptionDefault
typeNoSpecific request type, fuzzy contains. Example: "Pothole", "Injured-Sick Animal".
limitNoMax results (default 25).
statusNoFilter by case status.
categoryNoCategory, fuzzy contains. Example: "Streets", "Animals", "Solid Waste".
departmentNoDepartment, fuzzy contains. Example: "Public Works", "Animal Care Services".
council_districtNoSan Antonio city council district number (1-10).

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds context by specifying the types of service calls (non-emergency), the filterable fields, and the authoritative data source, which goes beyond the annotations and helps the agent understand the tool's scope.

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 two concise sentences, front-loading the primary purpose and providing useful examples. No filler or redundant information; every sentence contributes to understanding the tool's functionality and data source.

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?

Given the tool's moderate complexity (6 optional parameters, no output schema) and good annotations, the description adequately covers what the tool searches, what filters are available, and the authoritative source. It does not explain return format or pagination, but that is not required when no output schema exists and the annotations cover the safety profile.

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 the input schema already documents all six parameters with types, defaults, and examples. The description merely restates the filterable dimensions (category, type, department, status, council district) without adding new semantics beyond the schema, resulting in the baseline score.

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 uses a specific verb ('Search') with a clear resource ('San Antonio 311 service calls') and enumerates example categories (streets, animal services, code compliance). It also lists filter dimensions, making the tool's purpose distinct from siblings like san_antonio_nws_alerts or san_antonio_tea_schools.

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 when to use this tool (for non-emergency San Antonio city services) by stating its scope and authoritative source. It does not explicitly name alternatives or exclusions, but the sibling tools are unrelated, so the context is sufficient for an agent to select this tool over others.

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

san_antonio_nws_alertsA
Read-onlyIdempotent

Active National Weather Service alerts (severe thunderstorm, tornado, flood, heat, freeze, fire weather) for a specific San Antonio location. Defaults to central San Antonio when no address is supplied. Returns severity, urgency, headline, description, and expiration time for every active alert covering the point. Authoritative source: National Weather Service (api.weather.gov).

ParametersJSON Schema
NameRequiredDescriptionDefault
latNoLatitude (WGS-84). Use with lng to skip geocoding.
lngNoLongitude (WGS-84). Use with lat to skip geocoding.
addressNoStreet address to check. Will be geocoded. If omitted, defaults to central San Antonio.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive. The description adds valuable behavioral context: defaulting to central San Antonio when no address is supplied, the authoritative source (api.weather.gov), and the specific return fields. This goes beyond the annotation-only safety profile.

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 three concise sentences, front-loaded with the core purpose, then adding default behavior, return fields, and source. Every sentence earns its place with no redundancy or fluff.

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 simple read-only tool with three optional parameters and no output schema, the description is complete: it states the alert types, default if no address, the exact fields returned, and the authoritative source. No critical information is missing for correct invocation.

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 has 100% parameter description coverage, including address default behavior. The description does not meaningfully add parameter semantics; it references the default location but that is already in the schema. No additional parameter constraints or usage details are provided.

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 provides active National Weather Service alerts for a San Antonio location, listing specific alert types. It distinguishes from siblings (schools, 311) by focusing on weather alerts and includes the specific scope, return fields, and source.

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 implies when to use the tool: for NWS alerts in San Antonio, with a default location if no address is given. It doesn't explicitly mention alternatives or exclusions, but the sibling tools are clearly unrelated (schools, 311), so usage context is unambiguous.

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

san_antonio_tea_schoolsA
Read-onlyIdempotent

Look up Texas public schools and their TEA accountability ratings. Search by campus name, district, county, or city. Returns the A-F overall rating, sub-scores (Student Achievement, School Progress, Closing the Gaps), enrollment, demographics, district info, address, phone, and website. Example districts: "San Antonio ISD", "North East ISD", "Northside ISD". Authoritative sources: Texas Education Agency (2022-2023 ratings) and AskTED directory. Note: this does NOT map an address to its assigned schools -- attendance zones are managed by individual ISDs.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCampus city (e.g. "SAN ANTONIO"). Filters AskTED directory by city.
limitNoMax results (default 25).
campusNoCampus name, fuzzy contains. Example: "Alamo Heights HS".
countyNoCounty name (e.g. "BEXAR"). Returns all campuses in that county.
ratingNoFilter by 2022-2023 overall rating.
districtNoDistrict name, fuzzy contains. Example: "San Antonio ISD", "North East ISD", "Northside ISD".
school_typeNoFilter by campus level.

TDQS

A4.3/5.0
Behavior4/5

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

Beyond the read-only/idempotent annotations, it discloses authoritative data sources (TEA 2022-2023, AskTED) and the non-mapping limitation. It also enumerates return fields, adding context helpful for an agent.

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 with purpose. Three sentences cover purpose, search options, return data, examples, sources, and a caveat without 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?

With no output schema, the description compensates by listing return fields (rating, sub-scores, enrollment, demographics, etc.). It also gives example districts and source context, making it sufficiently complete for selection and invocation.

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 covers 100% of parameters with descriptions; the description adds concrete examples (e.g., 'San Antonio ISD') and groups searchable fields, but doesn't explain how multiple filters combine or affect results, leaving a minor gap.

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 'Look up Texas public schools and their TEA accountability ratings,' providing a specific verb and resource. It clearly distinguishes from sibling tools about weather, 311, and general info by focusing on school accountability data.

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?

It states searchable attributes (campus name, district, county, city) and provides example district values. It explicitly notes when not to use it (address-to-school mapping) and points to ISDs for that need, though it doesn't name an alternative MCP tool.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updatesv0.1.0
    • First observedabout
    • First observedsan_antonio_311
    • First observedsan_antonio_nws_alerts
    • First observedsan_antonio_tea_schools

TDQS

A4.4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool targets a distinctly different domain: server metadata, weather alerts, school information, and city services. There is no overlap or potential for confusion between them.

Naming Consistency4/5

The three data tools follow a clear 'san_antonio_' prefix pattern with descriptive suffixes (nws_alerts, tea_schools, 311). The 'about' tool deviates from this pattern but is a standard server introspection tool, so the inconsistency is minor.

Tool Count5/5

With 4 tools, the server is well-scoped for a local information service. Each tool provides a meaningful, non-redundant function, and the count is within the ideal range.

Completeness4/5

The server covers key local information areas: weather alerts, schools, and city services. While additional areas like transit or events could be added, the current surface provides a coherent set of authoritative data with no obvious dead ends.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    MCP server for exploring Texas public school data through conversational interfaces, enabling campus search, district details, geospatial lookup, comparisons, and transfer insights using TEA data.
    16
    1
    Apache 2.0
  • F
    license
    A
    quality
    D
    maintenance
    An MCP server that gives Claude deep access to US public data -- demographics, economics, crime, employment, weather, housing, transit, schools, budgets, and more across 30+ cities for government intelligence workflows.
    28
    -
  • A
    license
    A
    quality
    C
    maintenance
    Provides AI assistants with plain-English access to official Houston-area public data including weather alerts and school ratings, no API keys required.
    3
    1
    Apache 2.0
  • A
    license
    A
    quality
    C
    maintenance
    A Model Context Protocol server that provides AI assistants with plain-English access to official Dallas-area public data (weather alerts, school ratings, and 311 service requests) without requiring API keys or logins.
    4
    1
    Apache 2.0