Skip to main content
Glama
victor-velazquez-ai

Enterprise MCP Template

get_record_schema

Retrieve the schema and structure for record payloads to understand expected data formats and construct correct payloads for AI client interactions.

Instructions

Get the schema/structure for record payloads. Returns documentation about expected payload formats.

TEMPLATE: Replace with your domain-specific schema documentation. This helps AI clients construct correct payloads.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler implementation of the tool 'get_record_schema' which returns the documentation for record payloads.
    @mcp.tool()
    def get_record_schema() -> Dict[str, Any]:
        """
        Get the schema/structure for record payloads.
        Returns documentation about expected payload formats.
        
        TEMPLATE: Replace with your domain-specific schema documentation.
        This helps AI clients construct correct payloads.
        """
        return {
            "description": "Record payload schema for {{PROJECT_NAME}}",
            "note": "TEMPLATE: Replace this with your actual record schema",
            "required_fields": {
                "entity": {
                    "type": "object",
                    "description": "Reference to the owning entity",
                    "example": {"id": "123"},
                },
            },
            "optional_fields": {
                "memo": {"type": "string", "description": "Description"},
                "date": {"type": "string", "format": "YYYY-MM-DD"},
            },
            "example": {
                "memo": "Example record",
                "entity": {"id": "123"},
                "date": "2026-01-15",
            },
        }

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/victor-velazquez-ai/enterprise-mcp-template'

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