MCP Server Framework - v1.0.0
    Preparing search index...

    Interface BaseResourceDefinition

    Base resource definition - shared properties for all resources.

    This is the common base for both static resources and resource templates. Provides consistent naming, description, and MIME type handling.

    interface BaseResourceDefinition {
        description: string;
        mimeType?: string;
        name: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    description: string

    Human-readable description shown to LLM

    mimeType?: string

    MIME type of the content (optional)

    name: string

    Unique resource name for identification