Package io.modelcontextprotocol.spec
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.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. This allows clients to validate tool arguments before sending them to the server.
- Enclosing class:
- McpSchema
public static record McpSchema.Tool(String name, String description, McpSchema.JsonSchema inputSchema)
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.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theinputSchemarecord component.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Tool
-
Tool
Creates an instance of aToolrecord class.- Parameters:
name- the value for thenamerecord componentdescription- the value for thedescriptionrecord componentinputSchema- the value for theinputSchemarecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-
inputSchema
Returns the value of theinputSchemarecord component.- Returns:
- the value of the
inputSchemarecord component
-