@iflow-mcp/claudeus-wp-mcp
Version:
The most comprehensive WordPress MCP server - 145 production-ready tools for complete WordPress management with AI
21 lines (20 loc) • 422 B
TypeScript
export interface Tool {
name: string;
description: string;
disabled?: boolean;
status?: 'enabled' | 'disabled';
inputSchema: {
type: string;
required?: string[];
properties?: Record<string, unknown>;
};
}
export interface ListToolsResponse {
tools: Tool[];
}
export interface CallToolResponse {
content: Array<{
type: string;
text: string;
}>;
}