template-get
Retrieve specific template content by providing the template ID from the Swagger MCP Server, which parses Swagger/OpenAPI documents to generate TypeScript types and API client code.
Instructions
Get specific template content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Template ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Template ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}