Wherobots
Server Details
Generate and run high performance queries on open and private spatial data at-scale in the cloud
- Status
- Unhealthy
- OAuth
- Works in Glama
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 7 tools
Each tool has a clear, distinct purpose: describing tables, executing queries, generating spatial queries, listing catalogs/databases/tables, and searching documentation. No overlap or ambiguity.
All tools follow a consistent snake_case naming pattern ending with '_tool', e.g., describe_table_tool, execute_query_tool. Very predictable.
7 tools cover essential operations for a spatial SQL database server: data discovery, schema inspection, query execution, query generation, and documentation search. Well-scoped for its purpose.
Covers the full read/exploration workflow. Missing DDL/DML tools (create/insert/update/delete) but those are likely out of scope for this server. Minor gap: no tool to list views or functions.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- Changed
describe_table_tool5 fields changed- added
Output schema / properties / commentAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Table-level description/comment" +} - added
Output schema / properties / last_updatedAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Timestamp of the latest snapshot (ISO 8601)" +} - added
Output schema / properties / partition_columnsAdded value: +{ + "description": "Partition spec with resolved column names and transforms. Add partition filters on these columns to improve query performance.", + "items": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "type": "array" +} - added
Output schema / properties / propertiesAdded value: +{ + "additionalProperties": { + "type": "string" + }, + "description": "User-set table properties (e.g. update frequency, source, query hints)", + "type": "object" +} - added
Output schema / properties / row_countAdded value: +{ + "anyOf": [ + { + "type": "integer" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Number of rows in the table" +}
- Removed
list_hierarchy_tool
3 tool updates
- Changed
describe_table_tool5 fields changed- removed
Output schema / $defsRemoved value: -{ - "NestedField": { - "properties": { - "doc": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "id": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "required": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "default": false - }, - "type": { - "anyOf": [ - { - "type": "string" - }, - { - "additionalProperties": true, - "type": "object" - } - ] - } - }, - "required": [ - "id", - "name", - "type" - ], - "type": "object" - } -} - removed
Output schema / properties / schema / items / $refRemoved value: -"#/$defs/NestedField" - added
Output schema / properties / schema / items / propertiesAdded value: +{ + "doc": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "required": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": false + }, + "type": { + "anyOf": [ + { + "type": "string" + }, + { + "additionalProperties": true, + "type": "object" + } + ] + } +} - added
Output schema / properties / schema / items / requiredAdded value: +[ + "id", + "name", + "type" +] - added
Output schema / properties / schema / items / typeAdded value: +"object"
- Changed
list_hierarchy_tool9 fields changed- removed
Output schema / $defsRemoved value: -{ - "CatalogInfo": { - "properties": { - "databases": { - "additionalProperties": { - "$ref": "#/$defs/DatabaseInfo" - }, - "description": "Databases in the catalog.", - "type": "object" - } - }, - "required": [ - "databases" - ], - "type": "object" - }, - "DatabaseInfo": { - "properties": { - "tables": { - "description": "List of tables in the database.", - "items": { - "$ref": "#/$defs/TableInfo" - }, - "type": "array" - } - }, - "required": [ - "tables" - ], - "type": "object" - }, - "HierarchySummary": { - "properties": { - "catalogs_count": { - "description": "Total number of catalogs.", - "type": "integer" - }, - "databases_count": { - "description": "Total number of databases.", - "type": "integer" - }, - "tables_count": { - "description": "Total number of tables.", - "type": "integer" - } - }, - "required": [ - "catalogs_count", - "databases_count", - "tables_count" - ], - "type": "object" - }, - "TableInfo": { - "properties": { - "name": { - "description": "Name of the table.", - "type": "string" - } - }, - "required": [ - "name" - ], - "type": "object" - } -} - removed
Output schema / properties / hierarchy / additionalProperties / $refRemoved value: -"#/$defs/CatalogInfo" - added
Output schema / properties / hierarchy / additionalProperties / propertiesAdded value: +{ + "databases": { + "additionalProperties": { + "properties": { + "tables": { + "description": "List of tables in the database.", + "items": { + "properties": { + "name": { + "description": "Name of the table.", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array" + } + }, + "required": [ + "tables" + ], + "type": "object" + }, + "description": "Databases in the catalog.", + "type": "object" + } +} - added
Output schema / properties / hierarchy / additionalProperties / requiredAdded value: +[ + "databases" +] - added
Output schema / properties / hierarchy / additionalProperties / typeAdded value: +"object" - removed
Output schema / properties / summary / $refRemoved value: -"#/$defs/HierarchySummary" - added
Output schema / properties / summary / propertiesAdded value: +{ + "catalogs_count": { + "description": "Total number of catalogs.", + "type": "integer" + }, + "databases_count": { + "description": "Total number of databases.", + "type": "integer" + }, + "tables_count": { + "description": "Total number of tables.", + "type": "integer" + } +} - added
Output schema / properties / summary / requiredAdded value: +[ + "catalogs_count", + "databases_count", + "tables_count" +] - added
Output schema / properties / summary / typeAdded value: +"object"
- Changed
search_documentation_tool5 fields changed- removed
Output schema / $defsRemoved value: -{ - "DocumentResult": { - "properties": { - "content": { - "description": "Document content", - "type": "string" - }, - "metadata": { - "additionalProperties": true, - "description": "Arbitrary metadata", - "type": "object" - }, - "path": { - "description": "Document path or URL", - "type": "string" - } - }, - "required": [ - "content", - "path" - ], - "type": "object" - } -} - removed
Output schema / properties / results / items / $refRemoved value: -"#/$defs/DocumentResult" - added
Output schema / properties / results / items / propertiesAdded value: +{ + "content": { + "description": "Document content", + "type": "string" + }, + "metadata": { + "additionalProperties": true, + "description": "Arbitrary metadata", + "type": "object" + }, + "path": { + "description": "Document path or URL", + "type": "string" + } +} - added
Output schema / properties / results / items / requiredAdded value: +[ + "content", + "path" +] - added
Output schema / properties / results / items / typeAdded value: +"object"
8 tool updates
- First observed
describe_table_tool - First observed
execute_query_tool - First observed
generate_spatial_query_tool - First observed
list_catalogs_tool - First observed
list_databases_tool - First observed
list_hierarchy_tool - First observed
list_tables_tool - First observed
search_documentation_tool
Related MCP Connectors
Ask in plain English, get a rendered, shareable map from live public data. 24 geospatial tools.
A collaborative substrate over your data: vector, knowledge graph, SQL, geospatial, streaming.
Geospatial AI MCP server — satellite imagery, embeddings, weather, GNS governance
Query BigQuery, Snowflake, Redshift & Azure Synapse with natural language
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables conversational spatial SQL queries in plain English, turning natural language questions into validated PostGIS operations and rendering results as GeoJSON on an interactive map.-
- FlicenseBqualityBmaintenanceProvides read-only query tools over OpenStreetMap data in PostGIS, enabling natural language queries for features, categories, and spatial analysis.7-
- AlicenseAqualityAmaintenanceEnables spatial analysis of large remote GeoParquet files directly from object storage without downloading or importing data, using DuckDB's predicate and projection pushdown to answer queries efficiently.8MIT
- AlicenseNot gradedqualityDmaintenanceProduction-ready satellite imagery analysis server that enables natural language queries for Earth observation data, including land cover classification, vegetation monitoring, water detection, change detection, and automated environmental reporting.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.