Record Class McpSchema.Tool

java.lang.Object
java.lang.Record
io.modelcontextprotocol.spec.McpSchema.Tool
Record Components:
name - A unique identifier for the tool. This name is used when calling the tool.
title - A human-readable title for the tool.
description - A human-readable description of what the tool does. This can be used by clients to improve the LLM's understanding of available tools.
inputSchema - A JSON Schema object that describes the expected structure of the arguments when calling this tool. Per SEP-1613, the dialect defaults to JSON Schema 2020-12 (McpSchema.JSON_SCHEMA_DIALECT_2020_12) when no explicit $schema entry is present. To declare a different dialect, include a "$schema" key in the map. For tools with no parameters the spec recommends {"type":"object","additionalProperties":false}.
outputSchema - An optional JSON Schema object defining the structure of the tool's output returned in the structuredContent field of a CallToolResult. Same dialect rules as inputSchema.
annotations - Optional additional tool information.
icons - Optional list of icons for this tool.
meta - See specification for notes on _meta usage
Enclosing class:
McpSchema

public static record McpSchema.Tool(String name, String title, String description, Map<String,Object> inputSchema, Map<String,Object> outputSchema, McpSchema.ToolAnnotations annotations, Map<String,Object> meta, List<McpSchema.Icon> icons) extends Record
Represents a tool that the server provides. Tools enable servers to expose executable functionality to the system. Through these tools, you can interact with external systems, perform computations, and take actions in the real world.