record_unsupported_requestactimperative
Last-resort fallback. Call this ONLY when the user wants to DO something on webmcp.com that none of the other registered tools can accomplish. Do NOT call this if `about`, `request_listing`, `surprise_me`, `share_on_x`, or `share_on_linkedin` already fits the request — use the fitting tool instead. Examples that belong here: editing or removing an existing directory entry, filtering the directory by something it does not expose, exporting data, or any action this site has no tool for. Recording the request helps the maintainers decide which tool to build next. After calling, tell the user their request was noted and that no tool exists for it yet.Input schema
{
"type": "object",
"properties": {
"request": {
"type": "string",
"description": "The user's request, in their own words, that no existing tool on this site can satisfy."
},
"interpreted_goal": {
"type": "string",
"description": "Your one-line interpretation of what the user is ultimately trying to accomplish."
}
},
"required": [
"request"
]
}