UNPKG

claudeus-wp-mcp

Version:

The most comprehensive WordPress MCP server - 145 production-ready tools for complete WordPress management with AI

62 lines (61 loc) 1.17 kB
/** * Common JSON Schema definitions for tools * Reusable schema fragments to maintain DRY principles */ /** * Standard site parameter schema * Used across all WordPress tools */ export declare const SITE_PARAM: { type: "string"; description: string; default: string; }; /** * Standard pagination parameters */ export declare const PAGINATION_PARAMS: { page: { type: "number"; description: string; minimum: number; }; per_page: { type: "number"; description: string; minimum: number; maximum: number; }; }; /** * Standard search parameter */ export declare const SEARCH_PARAM: { type: "string"; description: string; }; /** * Standard order parameters */ export declare const ORDER_PARAMS: { order: { type: "string"; description: string; enum: string[]; }; }; /** * Standard ID parameter */ export declare const ID_PARAM: { type: "number"; description: string; }; /** * Standard force delete parameter */ export declare const FORCE_DELETE_PARAM: { type: "boolean"; description: string; default: boolean; };