example_operation
Process user data by validating and structuring inputs such as name, email, and date for integration with AI models in the MCP Server TypeScript Template.
Instructions
A simple example operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | ||
Yes | |||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"type": "string"
},
"email": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"email",
"date"
],
"type": "object"
}