get_instance_schema
Retrieve the JSON schema for an instance to define and validate its structure with the Tembo MCP Server, enabling precise management of Tembo Cloud resources.
Instructions
Get the json-schema for an instance
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools.ts:306-316 (handler)The handler function for the 'get_instance_schema' tool. It calls temboClient.getSchema() and returns the JSON-stringified response as text content.get_instance_schema: async () => { const response = await temboClient.getSchema(); return { content: [ { type: "text", text: JSON.stringify(response.data ?? response.error, null, 2), }, ], }; },
- src/tools.ts:51-58 (registration)Registration of the 'get_instance_schema' tool in the TOOLS array, including name, description, and input schema (no required parameters).{ name: "get_instance_schema" as const, description: "Get the json-schema for an instance", inputSchema: { type: "object", properties: {}, }, },