Phantom.Tool.JSONSchema (phantom_mcp v0.3.2)
View SourceJSON Schema representing the arguments for the tool, either as input_schema
or output_schema
.
Learn more at https://json-schema.org/learn/getting-started-step-by-step
Example:
%{
type: "object",
properties: %{
productId: %{
description: "The unique identifier for a product",
type: "integer"
},
productName: %{
description: "Name of the product",
type: "string"
}
}
}