Plugin Directory

Changeset 3395877


Ignore:
Timestamp:
11/14/2025 05:23:47 PM (4 months ago)
Author:
knowhalim
Message:

MCP Integrated

Location:
easily-post-gpt
Files:
37 added
2 edited

Legend:

Unmodified
Added
Removed
  • easily-post-gpt/trunk/easily-post-gpt.php

    r3395824 r3395877  
    1616 * Plugin Name:       Easily Post from GPT
    1717 * Plugin URI:        https://easilygpt.com
    18  * Description:       Easily post from ChatGPT to your WP without writing any codes.
    19  * Version:           1.2.0
     18 * Description:       Easily post from ChatGPT to your WP without writing any codes. Includes MCP support for AI assistants.
     19 * Version:           1.3.0
    2020 * Author:            Knowhalim
    2121 * Requires at least: 6.1
     
    3333
    3434
    35 define( 'GPT2WP_VERSION', '1.2.0' );
     35define( 'GPT2WP_VERSION', '1.3.0' );
    3636
    3737
  • easily-post-gpt/trunk/includes/class-gpt2wp.php

    r3069299 r3395877  
    123123        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'public/class-gpt2wp-public.php';
    124124
     125        /**
     126         * The class responsible for MCP (Model Context Protocol) REST API integration.
     127         */
     128        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-gpt2wp-mcp-handler.php';
     129
    125130        $this->loader = new Gpt2wp_Loader();
    126131
     
    183188    public function run() {
    184189        $this->loader->run();
     190
     191        // Initialize MCP REST API handler
     192        Gpt2wp_MCP_Handler::init();
    185193    }
    186194
Note: See TracChangeset for help on using the changeset viewer.