@stellarwp/learndash-mcp-server
Version:
A LearnDash MCP Server implementation
13 lines • 362 B
TypeScript
import { BaseToolCreator } from '@stellarwp/mcp-toolkit';
/**
* Optional options to pass to the server to dynamically configure
* tools.
*/
export interface LearnDashMcpServerOptions {
adminUrl: string;
}
/**
* Type for tool creating functions.
*/
export type ToolCreator = BaseToolCreator<LearnDashMcpServerOptions>;
//# sourceMappingURL=types.d.ts.map