Overview
registerAppTool is a convenience wrapper around the MCP SDK’s server.registerTool() that normalizes UI metadata for compatibility across hosts. Use it instead of registerTool when your tool should render a View.
Signature
Parameters
The MCP server instance.
Tool name/identifier.
Tool configuration. Extends the standard MCP
ToolConfig with a required _meta field containing UI metadata.Human-readable tool title.
Tool description for the model.
Zod schema or JSON Schema for tool arguments.
Zod schema or JSON Schema for tool output.
MCP tool annotations (e.g.,
readOnlyHint).UI metadata linking this tool to a resource. See _meta Reference below for full details.
URI of the UI resource to display (e.g.,
"ui://weather/view.html"). Must match a URI registered via registerAppResource.Who can access this tool. Default:
["model", "app"]. See visibility below.Tool handler function. Receives parsed arguments and returns a
CallToolResult.Usage
Basic tool with UI
App-only tool (hidden from model)
Setvisibility: ["app"] for tools that should only be callable from the View — useful for polling, pagination, or UI-driven server interactions:
Model-only tool
Setvisibility: ["model"] for tools that the model can call but the View cannot:
_meta Reference
See Tool _meta for the complete reference on resourceUri, visibility, host behavior rules, and metadata normalization.