jezweb-mcp-core
Version:
Jezweb Model Context Protocol (MCP) Core - A universal server for providing AI tools and resources, designed for seamless integration with various AI models and clients. Features adaptable multi-provider support, comprehensive tool and resource management
17 lines • 799 B
TypeScript
/**
* Resources Index - Centralized exports for all shared MCP resources
*
* This module provides clean, tree-shakable exports for all MCP resources
* including templates, examples, and documentation. Enables both deployments
* to import resources using @shared/resources.
*/
import { getResources, getResource, getResourceContent, getResourcesByCategory, RESOURCE_URIS } from './resources.js';
export declare const getAllResources: typeof getResources;
export { getResource, getResourceContent, getResourcesByCategory, RESOURCE_URIS };
export declare function searchResources(query: string): import("../types/core-types.js").MCPResource[];
export declare function getResourceStats(): {
total: number;
categories: number;
};
export { getResources };
//# sourceMappingURL=index.d.ts.map