@machfivetechchicago/machvive-webmcp-ai 5.7.0 → 5.7.2
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 +26 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
<a href="LICENSE"><img alt="license" src="https://img.shields.io/npm/l/@machfivetechchicago/machvive-webmcp-ai.svg"></a>
|
|
12
12
|
<img alt="types" src="https://img.shields.io/badge/types-included-blue.svg">
|
|
13
13
|
<img alt="dependencies" src="https://img.shields.io/badge/dependencies-0-brightgreen.svg">
|
|
14
|
+
<a href="https://github.com/Mach-Five-Group/machvive-webmcp-ai/wiki/Machvive-WebMCP-Polyfill-Web-Component-Lib"><img alt="docs" src="https://img.shields.io/badge/docs-wiki-blue.svg"></a>
|
|
14
15
|
</p>
|
|
15
16
|
|
|
16
17
|
WebMCP empowers agents by giving them access to your core business functionality within a safe, semantic sandbox.
|
|
@@ -29,6 +30,10 @@ elements with Shadow DOM that work anywhere `customElements` does.
|
|
|
29
30
|
| WebMCP analytics | `<machvive-webmcp-analytics>` | Captures every tool call for listing, editing, export, replay, and dataLayer |
|
|
30
31
|
| Lorum Ipsum | `<machvive-lorum-ipsum>` | Placeholder copy that projects slotted content |
|
|
31
32
|
|
|
33
|
+
📖 **[Read the full guide on the Wiki](https://github.com/Mach-Five-Group/machvive-webmcp-ai/wiki/Machvive-WebMCP-Polyfill-Web-Component-Lib)** — what WebMCP is and why it beats
|
|
34
|
+
scripted clicking, how the components compose, and the constraints worth knowing
|
|
35
|
+
before you adopt.
|
|
36
|
+
|
|
32
37
|
<img width="1098" height="894" alt="m5t_machvive_ai_webmcp" src="https://github.com/user-attachments/assets/a1433ff0-f8a9-46fb-ad59-735aed155ff8" />
|
|
33
38
|
|
|
34
39
|
## ⚡ Integration with Vite (Vanilla JS)
|
|
@@ -254,6 +259,22 @@ themes unless you scope your override inside your own media query.
|
|
|
254
259
|
Every combination of OS preference and `theme` is verified to meet WCAG AA
|
|
255
260
|
(≥ 4.5:1) across the full UI. If you override tokens, re-check your own contrast.
|
|
256
261
|
|
|
262
|
+
## 🤖 Claude Code skill
|
|
263
|
+
|
|
264
|
+
If you build with [Claude Code](https://claude.com/claude-code), install the
|
|
265
|
+
companion skill so Claude knows how to use these components — the API, and the
|
|
266
|
+
constraints that quietly break integrations:
|
|
267
|
+
|
|
268
|
+
```
|
|
269
|
+
/plugin marketplace add Mach-Five-Group/machvive-webmcp-ai
|
|
270
|
+
/plugin install machvive-webmcp@machvive
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
Claude then knows to import analytics before registering tools, that the polyfill
|
|
274
|
+
needs a secure context, that a top-level import breaks under SSR, and that
|
|
275
|
+
`sideEffects: false` silently drops the component registrations — the four things
|
|
276
|
+
that fail in ways that look like something else.
|
|
277
|
+
|
|
257
278
|
## TypeScript
|
|
258
279
|
|
|
259
280
|
Declarations ship with the package — no `@types/*` needed. Importing a component
|
|
@@ -313,6 +334,11 @@ A static top-level `import` will not work in any of these: the module is evaluat
|
|
|
313
334
|
during the server render, before any browser-only lifecycle hook gets a chance to run.
|
|
314
335
|
Use the dynamic `import()` form shown above.
|
|
315
336
|
|
|
337
|
+
## Documentation
|
|
338
|
+
|
|
339
|
+
Full guide, architecture notes, and adoption constraints live on the
|
|
340
|
+
**[project Wiki](https://github.com/Mach-Five-Group/machvive-webmcp-ai/wiki)**.
|
|
341
|
+
|
|
316
342
|
## License
|
|
317
343
|
|
|
318
344
|
[Apache-2.0](LICENSE) © MachFiveTech Chicago
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@machfivetechchicago/machvive-webmcp-ai",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.2",
|
|
4
4
|
"description": "I don't want to use your product's agent; I want my agent to be able to use your product.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"WebMCP",
|
|
@@ -66,5 +66,8 @@
|
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"fake-indexeddb": "^6.2.5",
|
|
68
68
|
"jsdom": "^29.1.1"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@machfivetechchicago/machvive-webmcp-ai": "^5.7.1"
|
|
69
72
|
}
|
|
70
73
|
}
|