DRIP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 |
|---|---|
| tasks | {
"list": {},
"cancel": {},
"requests": {
"tools": {
"call": {}
}
}
} |
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"subscribe": true,
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| geocodeLocationC | Convert a location name or address into geographic coordinates. |
| checkWeather | Retrieve current weather conditions and disaster risk for a location. |
| findSafeRouteB | Find the safest available route between two geographic coordinates. |
| findNearestHospitalC | Locate the nearest available hospital to the specified coordinates. |
| findNearestShelterC | Locate the nearest emergency shelter to the specified coordinates. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Health Checks | Current health status of all registered health checks |
| Widget Examples | Provides metadata and examples for all registered UI widgets |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: locating hospitals, locating shelters, finding safe routes, and geocoding. No two tools overlap in function; even the two 'nearest' tools target different types of facilities.
All tool names follow a consistent verb_noun pattern using camelCase (findNearestX, geocodeLocation). The naming is predictable and readable.
Four tools is a reasonable number for a focused emergency response server. Each tool earns its place without being excessive or insufficient.
The tool set covers the core emergency location needs: finding hospitals, shelters, safe routes, and geocoding. Minor gaps may exist (e.g., getting detailed info on a facility), but the surface is largely complete for its stated purpose.