@progress/kendo-angular-webmcp 24.0.0-develop.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,44 @@
1
+ <a href="https://www.telerik.com/kendo-angular-ui/components/" target="_blank">
2
+ <img width="631" src="https://demos.telerik.com/kendo-angular-ui/assets/banner/npm-banner.svg" alt="Kendo UI for Angular Web MCP">
3
+ </a>
4
+
5
+ ## Kendo UI for Angular Web MCP Package
6
+
7
+ > * This package is part of [Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/)&mdash;a commercial UI library.
8
+ > * To use this package, you must install a license key file, whether you are on a paid license or a 30-day free trial. To receive a license key, either [purchase a license](https://www.telerik.com/purchase/kendo-ui) or start a [free trial](https://www.telerik.com/download-login-v2-kendo-angular-ui).
9
+ > * Adding a valid license key file ensures a seamless experience during the trial period&mdash;no watermarks, no warnings, and full access to all components and features.
10
+ > * Trial users can register for a free license key file. Without it, your trial may be interrupted by visual indicators or functionality limitations.
11
+ > * Additionally, for the period of your license, you get access to our legendary technical support provided directly by the Kendo UI for Angular team!
12
+ > * Learn more: https://www.telerik.com/kendo-angular-ui/components/licensing
13
+
14
+ The Kendo UI for Angular Web MCP package exposes AI-discoverable tools for Kendo Angular components via the browser's [Web MCP protocol](https://AIMeetsWeb.org/) (Chrome 136+).
15
+
16
+ ## What's Included
17
+
18
+ The Web MCP package provides a single directive (`kendoWebMcp`) that registers context-aware tools for any supported Kendo component, enabling AI agents to interact with your UI programmatically.
19
+
20
+ ## Key Features
21
+
22
+ * **Zero-configuration**&mdash;Add the `kendoWebMcp` attribute to any supported component to instantly expose AI tools.
23
+ * **Fine-grained control**&mdash;Pass a `WebMcpConfig` object to enable or disable specific tool groups.
24
+ * **Transparent to users**&mdash;The directive operates entirely in the background with no UI impact.
25
+ * **Bundle-safe**&mdash;No runtime dependency on component packages that are not installed.
26
+
27
+ ## Support Options
28
+
29
+ For any issues you might encounter while working with the Kendo UI for Angular Web MCP, you have the following support channels available:
30
+
31
+ * Industry-leading technical support&mdash;Kendo UI for Angular paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use the [dedicated Kendo UI for Angular support system](https://www.telerik.com/account/support-center/contact-us/technical-support).
32
+ * Product forums&mdash;The [Kendo UI for Angular forums](https://www.telerik.com/forums/kendo-angular-ui) are part of the free support you can get from the community and from the Kendo UI for Angular team.
33
+ * Feedback portal&mdash;The [Kendo UI for Angular feedback portal](https://feedback.telerik.com/kendo-angular-ui) is where you can request and vote for new features to be added.
34
+
35
+ ## Resources
36
+
37
+ * [Getting Started with Kendo UI for Angular](https://www.telerik.com/kendo-angular-ui/getting-started)
38
+ * [Demos, documentation, and component reference](https://www.telerik.com/kendo-angular-ui/components)
39
+ * [Blogs](http://www.telerik.com/blogs/kendo-ui)
40
+ * [Kendo UI for Angular pricing and licensing](https://www.telerik.com/purchase/kendo-ui)
41
+
42
+ *Copyright © 2026 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.*
43
+
44
+ *Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.*
@@ -0,0 +1,27 @@
1
+ /**-----------------------------------------------------------------------------------------
2
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
+ * Licensed under commercial license. See LICENSE.md in the project root for more information
4
+ *-------------------------------------------------------------------------------------------*/
5
+ import { WebMcpDirective } from "./lib/webmcp.directive";
6
+ /**
7
+ * Use the `KENDO_WEBMCP` utility array to add Web MCP support to a standalone Angular component.
8
+ *
9
+ * @example
10
+ * ```typescript
11
+ * import { Component } from '@angular/core';
12
+ * import { KENDO_WEBMCP } from '@progress/kendo-angular-webmcp';
13
+ * import { KENDO_GRID } from '@progress/kendo-angular-grid';
14
+ *
15
+ * @Component({
16
+ * standalone: true,
17
+ * imports: [KENDO_WEBMCP, KENDO_GRID],
18
+ * template: `
19
+ * <kendo-grid [data]="data" [kendoWebMcp]="true"></kendo-grid>
20
+ * `,
21
+ * })
22
+ * export class AppComponent {
23
+ * data = [...];
24
+ * }
25
+ * ```
26
+ */
27
+ export declare const KENDO_WEBMCP: readonly [typeof WebMcpDirective];