@iflow-mcp/claudeus-wp-mcp
Version:
The most comprehensive WordPress MCP server - 145 production-ready tools for complete WordPress management with AI
11 lines (10 loc) • 358 B
TypeScript
/**
* MCP Tools Registration
* Simplified main file that delegates to modular handlers
*/
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
import { ClientMap } from '../handlers/tools.js';
/**
* Register all MCP handlers with the server
*/
export declare function registerTools(server: Server, clients: Map<string, ClientMap>): void;