// layer. This is the catch-all backstop for any code path — CLI, REST, // AJAX, custom-plugin endpoints, code snippets — that calls // update_option() while inside an MCP-bound request. The filters are // registered once; the actual refusal is gated on the per-request // `enter_mcp()` flag toggled below in `handle_mcp_request`. Protected_Options_Filter::install(); } /** * Register REST API routes. * * @since 1.0.0 * @return void */ public function register_routes() { // Strict JSON-RPC 2.0 MCP Endpoint register_rest_route( 'zip-ai/v1', '/mcp', array( 'methods' => 'POST', 'callback' => array( $this, 'handle_mcp_request' ), 'permission_callback' => array( $this, 'check_permission' ), ) ); // Trigger site scan — sends raw site data to SaaS for memory enrichment. register_rest_route( 'zip-ai/v1', '/site-scan', array( 'methods' => 'POST', 'callback' => array( $this, 'handle_site_scan' ), 'permission_callback' => array( $this, 'check_permission' ), ) ); } /** * Single ingress point for all JSON-RPC 2.0 MCP requests. * * @param \WP_REST_Request $request The REST request object. * @return \WP_REST_Response */ public function handle_mcp_request( $request ) { // Handle Authentication Context (from HTTP Headers/Session) $this->setup_user_context( $request ); $body = $request->get_json_params(); $method = $body['method'] ?? null; $id = $body['id'] ?? null; $params = $body['params'] ?? array(); if ( empty( $method ) ) { return $this->format_mcp_error( $id, -32600, 'Invalid Request: Missing method' ); } // Mark this request as MCP-bound so the protected-options filters // installed via Protected_Options_Filter::install() refuse mutations // to site-critical keys (siteurl, home, template, …) regardless of // which ability-specific code path tries to write them. Cleared in // the `finally` block — `register_shutdown_function` is the safety // net for fatal-error paths. Protected_Options_Filter::enter_mcp(); try { switch ( $method ) { case 'initialize': return $this->handle_initialize( $id ); case 'tools/list': return $this->handle_tools_list( $id ); case 'tools/call': return $this->handle_tools_call( $id, $params ); case 'notifications/initialized': // Fire-and-forget notification, no response needed. return new \WP_REST_Response( null, 200 ); default: return $this->format_mcp_error( $id, -32601, "Method not found: {$method}" ); } } catch ( \Throwable $e ) { return $this->format_mcp_error( $id, -32000, 'Internal Server Error: ' . $e->getMessage() ); } finally { Protected_Options_Filter::exit_mcp(); } } /** * Handle MCP Initialization Protocol. */ private function handle_initialize( $id ) { return $this->format_mcp_response( $id, array( 'protocolVersion' => '2024-11-05', 'capabilities' => array( 'tools' => array(), ), 'serverInfo' => array( 'name' => 'ZipWP WordPress MCP', 'version' => '1.0.0', ), ) ); } /** * Handle MCP Tools List Protocol. */ private function handle_tools_list( $id ) { if ( ! class_exists( 'WP_Abilities_Registry' ) ) { return $this->format_mcp_error( $id, -32001, 'Abilities API is not available' ); } $registry = \WP_Abilities_Registry::get_instance(); $abilities = $registry->get_all_registered(); $tools = array(); // Exclude mcp-adapter/get-ability-info from the catalog. The brain // already receives every tool's `inputSchema` in this same payload, so // runtime schema introspection is redundant — and this tool only adds // failure surface: it resolves names by canonical `namespace/name`, but // the brain knows tools as `namespace__name`, so the argument never // resolves and the call returns a misleading "invalid permissions", // dead-ending arg-correction recovery. The brain's own recovery policy // already steers AWAY from it (recoveryHints VALIDATION rule: "fix the // arguments, do NOT discover alternates"). discover-abilities and // execute-ability are KEPT — the brain relies on them as the surface- // switch escape hatch for wp-cli-not-exposed errors. $excluded_meta_abilities = array( 'mcp-adapter/get-ability-info', ); foreach ( $abilities as $ability_name => $ability ) { $resolved_name = $ability->get_name() ?: $ability_name; if ( in_array( $resolved_name, $excluded_meta_abilities, true ) ) { continue; } $tool = array( 'name' => $ability->get_name() ?: $ability_name, 'description' => $ability->get_description(), 'inputSchema' => $ability->get_input_schema() ?: array( 'type' => 'object', 'properties' => new \stdClass(), ), ); // Expose output schema to the brain when declared — lets the LLM learn // the tool's response contract from the schema rather than prose. $output_schema = $ability->get_output_schema(); if ( ! empty( $output_schema ) ) { $tool['outputSchema'] = $output_schema; } $label = $ability->get_label(); if ( ! empty( $label ) ) { $tool['title'] = $label; } // Expose tool_type (read|write|list|search|action|delete) so the brain's // classifier can set mutates_state from the source-of-truth annotation // instead of guessing from the tool name. Without this, the brain falls // back to a verb-based heuristic that misclassifies tools like // read-type tools as writes, blocking legitimate reads // during plan/discover stages. WP_Ability core wrappers expose // `get_meta()`; Abstract_Ability instances also expose `get_tool_type()`. $tool_type = null; if ( method_exists( $ability, 'get_meta' ) ) { $meta = $ability->get_meta(); if ( is_array( $meta ) && ! empty( $meta['tool_type'] ) ) { $tool_type = $meta['tool_type']; } } if ( null === $tool_type && method_exists( $ability, 'get_tool_type' ) ) { $tool_type = $ability->get_tool_type(); } if ( ! empty( $tool_type ) ) { $tool['tool_type'] = $tool_type; } // Read-only sub-action allowlist for multiplexed abilities (those // that route many operations through a single `action` enum). // Forwarded to the brain so its writes-require-approval gate can // classify `action:"list"` on a generally-destructive tool as a // safe read. Empty when the ability doesn't declare any. The // registry returns a `WP_Ability` wrapper (not the original // subclass), so we read the allowlist from the meta map populated // by Abstract_Ability::register(). $read_only_actions = null; if ( method_exists( $ability, 'get_meta' ) ) { $ability_meta_for_read = $ability->get_meta(); if ( is_array( $ability_meta_for_read ) && ! empty( $ability_meta_for_read['read_only_actions'] ) && is_array( $ability_meta_for_read['read_only_actions'] ) ) { $read_only_actions = $ability_meta_for_read['read_only_actions']; } } if ( null === $read_only_actions && method_exists( $ability, 'get_read_only_actions' ) ) { $read_only_actions = $ability->get_read_only_actions(); } if ( is_array( $read_only_actions ) && ! empty( $read_only_actions ) ) { $tool['read_only_actions'] = array_values( $read_only_actions ); } // Forward a whitelisted subset of ability meta. Only keys that the // Laravel TurnRequestBuilder + brain toolRouting.ts actually consume // are exposed — keeps tools/list payload bounded and prevents // accidental leakage of new internal fields if abilities later // add private metadata. Update this list when a new key is needed // by the brain (and document the reason in the consuming code). if ( method_exists( $ability, 'get_meta' ) ) { $ability_meta = $ability->get_meta(); if ( is_array( $ability_meta ) && ! empty( $ability_meta ) ) { $default_allowed_meta_keys = array( 'tool_type', 'visibility', 'execution_mode', 'js_handler', 'resource', 'examples', 'api_endpoint', 'boost_screens', 'required_plugin', 'required_plugin_version', 'version', // Brain-side preflight against agent_context.site.. // Declared on plugin lifecycle abilities (Activate/Deactivate/Delete) // so the brain can refuse LLM-authored slugs that do not match // a currently installed plugin BEFORE the call reaches the browser. // Without this key in the allowlist, array_intersect_key strips // the meta and the brain never receives it. 'preflight_resource', ); $allowed_meta_keys = apply_filters( 'zip_ai_tools_list_allowed_meta_keys', $default_allowed_meta_keys, $ability_name, $ability ); if ( ! is_array( $allowed_meta_keys ) || empty( $allowed_meta_keys ) ) { $allowed_meta_keys = $default_allowed_meta_keys; } $forwarded_meta = array_intersect_key( $ability_meta, array_flip( $allowed_meta_keys ) ); if ( ! empty( $forwarded_meta ) ) { $tool['meta'] = $forwarded_meta; } } } $tools[] = $tool; } return $this->format_mcp_response( $id, array( 'tools' => $tools ) ); } /** * Handle MCP Tools Call Protocol. */ private function handle_tools_call( $id, $params ) { $tool_name = $params['name'] ?? ''; $arguments = $params['arguments'] ?? array(); if ( empty( $tool_name ) ) { return $this->format_mcp_error( $id, -32602, 'Invalid params: tool name required' ); } if ( ! class_exists( 'WP_Abilities_Registry' ) ) { return $this->format_mcp_error( $id, -32001, 'Abilities API is not available' ); } $registry = \WP_Abilities_Registry::get_instance(); $ability = $registry->get_registered( $tool_name ); if ( ! $ability ) { return $this->format_mcp_error( $id, -32601, "Tool not found: {$tool_name}" ); } // Execute the tool — WP_Ability::execute() dispatches to the registered execute_callback // (Abstract_Ability::handle_execute), which includes validation, rate-limiting, try-catch. $result = $ability->execute( $arguments ); // Check if it's already a standard response from our Response class (Response::success/error) if ( is_array( $result ) && isset( $result['success'] ) ) { if ( ! $result['success'] ) { return $this->format_mcp_response( $id, array( 'content' => array( array( 'type' => 'text', 'text' => wp_json_encode( $result ), ), ), 'isError' => true, ) ); } return $this->format_mcp_response( $id, array( 'content' => array( array( 'type' => 'text', 'text' => wp_json_encode( $result ), ), ), ) ); } if ( is_wp_error( $result ) ) { return $this->format_mcp_response( $id, array( 'content' => array( array( 'type' => 'text', 'text' => wp_json_encode( array( 'success' => false, 'error' => $result->get_error_message(), 'code' => $result->get_error_code(), ) ), ), ), 'isError' => true, ) ); } return $this->format_mcp_response( $id, array( 'content' => array( array( 'type' => 'text', 'text' => wp_json_encode( array( 'success' => true, 'data' => $result, ) ), ), ), ) ); } /** * Format an MCP JSON-RPC standard response. */ private function format_mcp_response( $id, $result ) { return new \WP_REST_Response( array( 'jsonrpc' => '2.0', 'id' => $id, 'result' => $result, ), 200 ); } /** * Format an MCP JSON-RPC standard error. */ private function format_mcp_error( $id, $code, $message ) { return new \WP_REST_Response( array( 'jsonrpc' => '2.0', 'id' => $id, 'error' => array( 'code' => $code, 'message' => $message, ), ), 200 ); } /** * Extracted user-context setup. App Password Basic auth via * {@see is_basic_authenticated()} resolves and sets the current user * inside `wp_authenticate_application_password()` as a side effect, * so this method is a thin wrapper that just triggers the check — * subsequent capability lookups (in this handler and in downstream * third-party hooks like Elementor) see the App Password owner. * * The legacy `auth_token_wp_user_id` binding + `x_wp_user_id` header * gate + `legacy_token_healed` migration scaffolding are retired: * identity is now bound to the credential itself, not asserted by * the caller. */ private function setup_user_context( $request ) { $this->is_basic_authenticated(); } /** * Handle site scan — collects raw site data and sends to SaaS. * * @param \WP_REST_Request $request The REST request object. * @return \WP_REST_Response */ public function handle_site_scan( $request ) { \ZipAI\MCP\Classes\Core\Site_Scanner::run_scan(); return new \WP_REST_Response( array( 'success' => true, 'message' => 'Site scan sent.' ), 200 ); } /** * Check if current request has permission to execute tools. * * Permission is granted if: * 1. Request has valid Bearer token (dev token or stored auth token) * 2. User is logged in with 'manage_options' capability * * @param \WP_REST_Request $request The REST request object. * @return bool|\WP_Error True if permission granted, WP_Error otherwise. */ public function check_permission( $request ) { // Application Password authentication. On success WP core sets // the current user, so capability checks downstream work // natively without any `wp_set_current_user` plumbing here. if ( $this->is_basic_authenticated() ) { return true; } // Check WordPress user capabilities for the admin-driven path // (logged-in browser session, e.g. settings page tools). if ( current_user_can( 'manage_options' ) ) { return true; } return new \WP_Error( 'rest_forbidden', __( 'You do not have permission to execute tools.', 'zip-ai' ), array( 'status' => 401 ) ); } /** * Check if the request is authenticated via Application Password * Basic auth. * * Reads `Authorization: Basic `, * decodes the credential, and delegates to WP core's * {@see wp_authenticate_application_password}. On success the * current user is set as a side effect so capability checks * downstream resolve against the App Password's owner. * * @return bool True if authenticated, false otherwise. */ private function is_basic_authenticated() { $credential = $this->get_basic_credential(); if ( null === $credential ) { return false; } list( $username, $password ) = $credential; if ( '' === $username || '' === $password ) { return false; } // `wp_authenticate_application_password` returns a WP_User on // success, or a WP_Error / null on failure. $result = wp_authenticate_application_password( null, $username, $password ); if ( $result instanceof \WP_User ) { wp_set_current_user( $result->ID ); return true; } return false; } /** * Pull `(username, password)` out of an `Authorization: Basic …` * header. Returns null when the header is absent, malformed, or * uses any scheme other than Basic. * * @return array{0: string, 1: string}|null */ private function get_basic_credential() { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Authorization header decoded for credential comparison only. $auth_header = isset( $_SERVER['HTTP_AUTHORIZATION'] ) ? $_SERVER['HTTP_AUTHORIZATION'] : ''; if ( empty( $auth_header ) && function_exists( 'getallheaders' ) ) { $headers = getallheaders(); $auth_header = $headers['Authorization'] ?? $headers['authorization'] ?? ''; } if ( ! is_string( $auth_header ) || 0 !== stripos( $auth_header, 'Basic ' ) ) { return null; } $encoded = trim( substr( $auth_header, 6 ) ); if ( '' === $encoded ) { return null; } $decoded = base64_decode( $encoded, true ); if ( false === $decoded || ! is_string( $decoded ) || strpos( $decoded, ':' ) === false ) { return null; } list( $username, $password ) = explode( ':', $decoded, 2 ); return array( (string) $username, (string) $password ); } }