PH Schools MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PH_SCHOOLS_DATA_TAG | No | Canonical tag for sync-data when URL is not provided. | |
| PH_SCHOOLS_DATA_URL | No | Override download URL for sync-data. If not provided, uses canonical URL based on tag. | |
| PH_SCHOOLS_DATA_PATH | No | Preferred local JSON file path for the dataset. If missing, server auto-downloads from canonical URL. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_schoolsB | Search PH schools by optional query fields (name, region, division, municipality, barangay, sector). |
| get_school_by_beis_idA | Get one school record by BEIS School ID. |
| list_regionsA | List all unique regions in the dataset. |
| list_divisionsB | List divisions, optionally filtered by region. |
| dataset_statsA | Return basic dataset stats and top-level breakdowns. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: dataset stats, direct lookup by ID, listing divisions, listing regions, and flexible search. No overlaps.
Tools use snake_case with a verb_noun pattern (get_school_by_beis_id, list_divisions, etc.), except dataset_stats which is noun_noun. Minor deviation but still readable and consistent in style.
Five tools is well-scoped for a schools data query server. Each tool covers a core operation without unnecessary clutter.
The set covers key query needs: search, direct lookup, region/division lists, and stats. Minor gaps like filtering by municipality directly are covered by search.