@squidcloud/backend
    Preparing search index...

    Interface McpServerOptions

    Options for the @mcpServer decorator.

    interface McpServerOptions {
        description: string;
        id: string;
        name: string;
        oauth?: McpOAuthOptions;
        version: string;
    }
    Index

    Properties

    description: string

    The MCP description.

    id: string

    Unique ID for this MCP server that will also be used in the MCP url.

    name: string

    The MCP name - it will be exposed in the MCP manifest.

    Optional OAuth configuration. When set, MCP requests must include a valid bearer token from the referenced auth integration. If an @mcpAuthorizer is also defined, it runs after OAuth validation with the validated claims available.

    version: string

    The version of the MCP server. This will be exposed in the MCP manifest.