@iflow-mcp/claudeus-wp-mcp
Version:
The most comprehensive WordPress MCP server - 145 production-ready tools for complete WordPress management with AI
15 lines (14 loc) • 321 B
TypeScript
export interface PromptArgument {
name: string;
description: string;
required: boolean;
}
export interface PromptDefinition {
name: string;
description: string;
arguments: PromptArgument[];
}
export interface Prompts {
[key: string]: PromptDefinition;
}
export declare const prompts: Prompts;