sample-tool
Process user input to demonstrate interaction with Sketchfab's 3D model platform via the MCP server, enabling model searches, details, and downloads from the AI interface.
Instructions
A sample tool for demonstration purposes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | Input parameter for the sample tool |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"input": {
"description": "Input parameter for the sample tool",
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}