sample-tool
Generate AI assistant tools with the MCP Server Template. Use this sample tool to process input parameters and build custom extensions for enhanced functionality.
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"
}