# learnpress/4.3.9.1/inc/admin/settings/class-lp-settings-mcp.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.3.9.1. 82 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.3.9.1/code/inc/admin/settings/class-lp-settings-mcp.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.9.1/raw/inc/admin/settings/class-lp-settings-mcp.php
- Modified: 2026-06-10T02:53:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.3.9.1/code/inc/admin/settings/class-lp-settings-mcp.php#L10-L20`.

```php
<?php
/**
 * Class LP_Settings_Mcp
 *
 * @package LearnPress/Admin/Classes/Settings
 * @version 1.0.0
 */

use LearnPress\Helpers\Config;

defined( 'ABSPATH' ) || exit;

class LP_Settings_Mcp extends LP_Abstract_Settings_Page {
	/**
	 * Construct.
	 */
	public function __construct() {
		$this->id   = 'mcp';
		$this->text = esc_html__( 'MCP', 'learnpress' );

		parent::__construct();
	}

	public function get_settings( $section = '', $tab = '' ) {
		return Config::instance()->get( 'mcp', 'settings' );
	}

	/**
	 * Render MCP unavailable notice.
	 *
	 * @return void
	 */
	protected function render_mcp_unavailable_notice(): void {
		$learn_more = sprintf(
			'<a href="%1$s" target="_blank" rel="noopener noreferrer">%2$s</a>',
			esc_url( 'https://learnpresslms.com/docs/learnpress-developer-documentation/model-context-protocol-mcp-integration/' ),
			esc_html__( 'Learn more', 'learnpress' )
		);

		$message = sprintf(
			'%1$s %2$s',
			esc_html__( 'This feature requires WordPress 7.0+ or WordPress 6.9+ with the MCP Adapter plugin activated.', 'learnpress' ),
			$learn_more
		);
		?>
		<div class="notice notice-warning inline">
			<p><?php echo wp_kses_post( $message ); ?></p>
		</div>
		<?php
	}

	/**
	 * Render MCP settings and API keys on one page (no sub-tabs).
	 *
	 * @param string $section
	 * @param string $tab
	 *
	 * @return void
	 */
	public function admin_page_settings( $section = null, $tab = '' ) {
		parent::admin_page_settings( $section, $tab );

		if ( 'yes' === LP_Settings::get_option( 'enable_mcp_integration', 'no' ) && class_exists( 'LP_Admin_MCP_API_Keys' ) ) {
			LP_Admin_MCP_API_Keys::instance()->render_page();
		}
	}

	/**
	 * Save MCP settings when MCP support is available.
	 *
	 * @param string $section
	 * @param string $tab
	 *
	 * @return void
	 */
	public function save_settings( $section = null, $tab = '' ) {
		parent::save_settings( $section, $tab );
	}
}

return new LP_Settings_Mcp();

```
