Skip to main content
Glama
tembo-io

Tembo MCP Server

Official
by tembo-io

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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: {},
    	},
    },
Install Server

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tembo-io/mcp-server-tembo'

If you have feedback or need assistance with the MCP directory API, please join our Discord server