Plugin Directory

Changeset 3470926


Ignore:
Timestamp:
02/27/2026 08:48:48 AM (5 weeks ago)
Author:
rainafarai
Message:

added MPC

Location:
notification-for-telegram
Files:
2 added
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • notification-for-telegram/tags/3.5/include/nftb_optionpage.php

    r3375754 r3470926  
    88    //private $telegram_notify_options;
    99    public $telegram_notify_option;
     10    public $telegram_notify_options;
     11    public $telegram_notify_options_tab2;
     12    public $telegram_notify_options_tab3;
     13    public $telegram_notify_options_tab4;
     14    public $telegram_notify_options_tab5;
    1015
    1116    public function getValuefromconfig($field)
  • notification-for-telegram/tags/3.5/index.php

    r3375754 r3470926  
    44* Plugin URI: https://www.reggae.it/my-wordpress-plugins
    55 * Description:  Sends notifications to Telegram when events occur in WordPress.
    6  * Version: 3.4.7
     6 * Version: 3.5
    77 * Author: Andrea Marinucci
    88 * Author URI:
     
    1818include( plugin_dir_path( __FILE__ ) . 'include/nftncron.php');
    1919include( plugin_dir_path( __FILE__ ) . 'include/nftb_optionpage.php');
     20include( plugin_dir_path( __FILE__ ) . 'include/nftb_MCP.php');
    2021require_once plugin_dir_path(__FILE__)  . 'include/nftb_surecart.php';
    2122
  • notification-for-telegram/tags/3.5/readme.txt

    r3375761 r3470926  
    22Contributors: rainafarai
    33Donate link: https://www.paypal.com/paypalme/rainafarai
    4 Tags: Telegram, Woocommerce ,Contact form, mailchimp
     4Tags: Telegram, Woocommerce ,Notification, mcp, ai, abilities-api
    55Requires at least: 4.0
    6 Tested up to: 6.8.1
    7 Stable tag: 3.4.7
     6Tested up to: 6.9.1
     7Stable tag: 3.5
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    4040You can enable/disable every notification in the Plugin settings page.
    4141 
    42 
    4342To configure the plugin, you need a valid Telegram API token. Its easy to get starting a Telegram Bot.
    4443You can learn about obtaining  tokens and generating new ones in
     
    5857
    5958
    60 MESSAGES TRANSLATION
     59== AI & MCP Compatible ==
     60
     61This plugin supports the **WordPress Abilities API** and is compatible with
     62**MCP (Model Context Protocol)** — the standard that allows AI agents like
     63Claude, ChatGPT, and others to interact with WordPress autonomously.
     64
     65If the **Abilities API** and **MCP Adapter** plugins are installed, any
     66authorized AI agent can automatically discover and use the
     67**Send Telegram Message** ability — no extra configuration needed.
     68
     69**What an AI can do with this plugin:**
     70* Send a Telegram message with custom text
     71* Add an inline button with label and URL
     72* Override the default chat ID
     73
     74= Requirements for MCP =
     75* WordPress 6.9+
     76* Plugin: Abilities API (WordPress/abilities-api)
     77* Plugin: MCP Adapter (WordPress/mcp-adapter)
     78
     79== MESSAGES TRANSLATION ==
    6180To translate Telegram messages, use WPML or Loco Translate. All notification strings are now translatable.
    6281Go to Loco Translate → Plugins → Notification for Telegram to add your translations.
     
    6483
    6584
    66 SHORTCODE EXAMPLE
     85== SHORTCODE EXAMPLE ==
    6786
    6887`[telegram_mess  message="Im so happy" chatids="0000000," token="000000000:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" showsitename="1" showip="1" showcity="1" ]`
     
    277296
    278297== Changelog ==
     298= 3.5 =
     299- Added: MCP (Model Context Protocol) compatibility
     300- Added: WordPress Abilities API integration
     301- AI agents can now send Telegram notifications autonomously
     302- Fixed PHP 8.2+ deprecation warning on Plugin Option Page. Deprecated: Creation of dynamic property nftb_TelegramNotify::$telegram_notify_options_tab
    279303
    280304= 3.4.7 =
  • notification-for-telegram/trunk/include/nftb_optionpage.php

    r3375754 r3470926  
    88    //private $telegram_notify_options;
    99    public $telegram_notify_option;
     10    public $telegram_notify_options;
     11    public $telegram_notify_options_tab2;
     12    public $telegram_notify_options_tab3;
     13    public $telegram_notify_options_tab4;
     14    public $telegram_notify_options_tab5;
    1015
    1116    public function getValuefromconfig($field)
  • notification-for-telegram/trunk/index.php

    r3375754 r3470926  
    44* Plugin URI: https://www.reggae.it/my-wordpress-plugins
    55 * Description:  Sends notifications to Telegram when events occur in WordPress.
    6  * Version: 3.4.7
     6 * Version: 3.5
    77 * Author: Andrea Marinucci
    88 * Author URI:
     
    1818include( plugin_dir_path( __FILE__ ) . 'include/nftncron.php');
    1919include( plugin_dir_path( __FILE__ ) . 'include/nftb_optionpage.php');
     20include( plugin_dir_path( __FILE__ ) . 'include/nftb_MCP.php');
    2021require_once plugin_dir_path(__FILE__)  . 'include/nftb_surecart.php';
    2122
  • notification-for-telegram/trunk/readme.txt

    r3375761 r3470926  
    22Contributors: rainafarai
    33Donate link: https://www.paypal.com/paypalme/rainafarai
    4 Tags: Telegram, Woocommerce ,Contact form, mailchimp
     4Tags: Telegram, Woocommerce ,Notification, mcp, ai, abilities-api
    55Requires at least: 4.0
    6 Tested up to: 6.8.1
    7 Stable tag: 3.4.7
     6Tested up to: 6.9.1
     7Stable tag: 3.5
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    4040You can enable/disable every notification in the Plugin settings page.
    4141 
    42 
    4342To configure the plugin, you need a valid Telegram API token. Its easy to get starting a Telegram Bot.
    4443You can learn about obtaining  tokens and generating new ones in
     
    5857
    5958
    60 MESSAGES TRANSLATION
     59== AI & MCP Compatible ==
     60
     61This plugin supports the **WordPress Abilities API** and is compatible with
     62**MCP (Model Context Protocol)** — the standard that allows AI agents like
     63Claude, ChatGPT, and others to interact with WordPress autonomously.
     64
     65If the **Abilities API** and **MCP Adapter** plugins are installed, any
     66authorized AI agent can automatically discover and use the
     67**Send Telegram Message** ability — no extra configuration needed.
     68
     69**What an AI can do with this plugin:**
     70* Send a Telegram message with custom text
     71* Add an inline button with label and URL
     72* Override the default chat ID
     73
     74= Requirements for MCP =
     75* WordPress 6.9+
     76* Plugin: Abilities API (WordPress/abilities-api)
     77* Plugin: MCP Adapter (WordPress/mcp-adapter)
     78
     79== MESSAGES TRANSLATION ==
    6180To translate Telegram messages, use WPML or Loco Translate. All notification strings are now translatable.
    6281Go to Loco Translate → Plugins → Notification for Telegram to add your translations.
     
    6483
    6584
    66 SHORTCODE EXAMPLE
     85== SHORTCODE EXAMPLE ==
    6786
    6887`[telegram_mess  message="Im so happy" chatids="0000000," token="000000000:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" showsitename="1" showip="1" showcity="1" ]`
     
    277296
    278297== Changelog ==
     298= 3.5 =
     299- Added: MCP (Model Context Protocol) compatibility
     300- Added: WordPress Abilities API integration
     301- AI agents can now send Telegram notifications autonomously
     302- Fixed PHP 8.2+ deprecation warning on Plugin Option Page. Deprecated: Creation of dynamic property nftb_TelegramNotify::$telegram_notify_options_tab
    279303
    280304= 3.4.7 =
Note: See TracChangeset for help on using the changeset viewer.