example-tool
Process input data strings using a TypeScript-based tool designed for integration into the MCP Server Template, enabling efficient data handling and service-based architecture.
Instructions
An example tool that processes input data
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| input | Yes | Input string to process | 
Input Schema (JSON Schema)
{
  "properties": {
    "input": {
      "description": "Input string to process",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}