17 tools registered. Strongest in WebMCP use, weakest in human experience.
No agent run recorded yet.
read_editor: declares no required list, so an agent cannot tell which parameters are mandatory; read_output: declares no required list, so an agent cannot tell which parameters are mandatory; find_exa{
name: "read_editor",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}read_editor, write_editor, format_editor, run_editor, stop_run<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="read_editor" tooldescription="...">
<!-- the same action, as UI -->
</form>{
"name": "read_editor",
"description": "Read Sema source from the playground editor. Use this before editing or running unfamiliar code.",
"inputSchema": {
"type": "object",
"properties": {
"offset": {
"type": "integer",
"minimum": 0,
"default": 0,
"description": "Zero-based character offset at which to start reading."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 12000,
"default": 1500,
"description": "Maximum number of characters to return."
}
},
"additionalProperties": false
},
"annotations": {
"readOnlyHint": true,
"untrustedContentHint": true
}
}read_editor: declares no required list, so an agent cannot tell which parameters are mandatory; read_output: declares no required list, so an agent cannot tell which parameters are mandatory; find_exa{
name: "read_editor",
inputSchema: {
type: "object",
properties: {
query: { type: "string", description: "What to search for" }
},
required: ["query"]
}
}document.modelContext.dispatchEvent(new Event("toolchange"));{ name: "format_editor" /* short, unique, verb-based */ }read_editor, write_editor, format_editor, run_editor, stop_run<!-- Give the tool a visible counterpart: a declarative form is one the person can see and use too. -->
<form toolname="read_editor" tooldescription="...">
<!-- the same action, as UI -->
</form>