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