NestJS MCP - v1.0.1
    Preparing search index...

    Execution context for MCP operations Provides access to the current request, handler metadata, and execution environment

    interface MCPExecutionContext {
        getType(): MCPContextType;
        getRequest(): MCPRequest;
        getClass(): Type<unknown>;
        getHandler(): string;
        getArgs(): unknown[];
        getMetadata<T = unknown>(key: string): T | undefined;
        getAllMetadata(): Record<string, unknown>;
        switchToMcp(): MCPContext;
    }

    Implemented by

    Index

    Methods