'customize_mcp_server', ]; } /** * Customize MCP server configuration * * @param array $config Default server configuration. * * @return array Modified configuration. */ public function customize_mcp_server( array $config ): array { // Override server name to match issue requirements. $config['server_name'] = 'groupone-backwpup-plugin'; // Set instructions that reference the documentation resource. $config['server_description'] = __( 'This is the BackWPup MCP server. For context and quick-start guidance, read the resource at groupone-backwpup-plugin://docs/overview before calling any tools.', 'backwpup' ); return $config; } }