61 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
flyTo: 3 parameters have no description (heading, pitch, duration); setView: 3 parameters have no description (heading, pitch, roll); zoomToExtent: 2 parameters have no description (bbox, duration); s{
name: "flyTo",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}{ name: "flyto" /* short, unique, verb-based */ }flyTo: message, user; setPostProcess: message, post{ name: "flyTo", annotations: { untrustedContentHint: true } }flyTo, setView, getView, zoomToExtent, saveViewpoint<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="flyto" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "flyTo",
"description": "Animate the camera to a geographic location. Use for visible navigation requested by the user. Returns { success: boolean, message?: string, error?: string }.",
"inputSchema": {
"type": "object",
"properties": {
"longitude": {
"type": "number",
"minimum": -180,
"maximum": 180,
"description": "Longitude in decimal degrees"
},
"latitude": {
"type": "number",
"minimum": -90,
"maximum": 90,
"description": "Latitude in decimal degrees"
},
"height": {
"type": "number",
"minimum": 0,
"maximum": 50000000,
"description": "Height above the ellipsoid in meters",
"default": 50000
},
"heading": {
"type": "number",
"minimum": 0,
"maximum": 360,
"default": 0
},
"pitch": {
"type": "number",
"minimum": -90,
"maximum": 90,
"default": -45
},
"duration": {
"type": "number",
"minimum": 0,
"maximum": 60,
"default": 2
}
},
"required": [
"longitude",
"latitude"
],
"additionalProperties": false
},
"annotations": {
"readOnlyHint": false
}
}flyTo: 3 parameters have no description (heading, pitch, duration); setView: 3 parameters have no description (heading, pitch, roll); zoomToExtent: 2 parameters have no description (bbox, duration); s{
name: "flyTo",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}flyTo: message, user; setPostProcess: message, post{ name: "flyTo", annotations: { untrustedContentHint: true } }document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "flyto" /* short, unique, verb-based */ }flyTo, setView, getView, zoomToExtent, saveViewpoint<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="flyto" tooldescription="...">
<!-- the same action, as UI -->
</form>