/** * WordPress Posts Tool Definitions * * Defines all MCP tool schemas for WordPress post management. * This module separates tool definitions from their implementations * for better maintainability and testing. */ import type { MCPTool } from "../../types/mcp.js"; /** * Tool definition for listing WordPress posts */ export declare const listPostsTool: MCPTool; /** * Tool definition for retrieving a single WordPress post */ export declare const getPostTool: MCPTool; /** * Tool definition for creating a new WordPress post */ export declare const createPostTool: MCPTool; /** * Tool definition for updating an existing WordPress post */ export declare const updatePostTool: MCPTool; /** * Tool definition for deleting a WordPress post */ export declare const deletePostTool: MCPTool; /** * Tool definition for retrieving post revisions */ export declare const getPostRevisionsTool: MCPTool; /** * Collection of all post tool definitions */ export declare const postToolDefinitions: MCPTool[]; //# sourceMappingURL=PostToolDefinitions.d.ts.map