openai-assistants-mcp
Version:
OpenAI Assistants MCP Server - A Model Context Protocol server providing OpenAI Assistants API tools and resources. Features comprehensive assistant management, thread operations, message handling, and run execution with seamless stdio transport for Claud
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