demobite 1.0.1 → 1.0.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 +47 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,6 +31,53 @@ The agent storyboards the flow, films it in a real Chrome, and stages the take
|
|
|
31
31
|
for your approval inside DemoBites. You approve in the product; the platform
|
|
32
32
|
does the rest.
|
|
33
33
|
|
|
34
|
+
## Manage DemoBites from your agent (MCP)
|
|
35
|
+
|
|
36
|
+
Recording is half the story. The same package wires the **DemoBites management
|
|
37
|
+
MCP** — a control plane your agent uses to run your Update Center and Demo
|
|
38
|
+
Center. Your customers' agents read your centers; your agent runs them.
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npx demobite mcp
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Claude Code is registered automatically. Any other MCP client works over
|
|
45
|
+
Streamable HTTP: point it at `https://app.demobites.com/api/mcp` with the
|
|
46
|
+
`Authorization: Bearer <key>` header the command prints (in Cursor, add both
|
|
47
|
+
under Settings → MCP). Then talk to your agent like a teammate:
|
|
48
|
+
|
|
49
|
+
> "Create a release with my latest bites, add Spanish, and publish it."
|
|
50
|
+
|
|
51
|
+
> "What's on our Demo Center? Swap the checkout bite for the onboarding one."
|
|
52
|
+
|
|
53
|
+
### What it can do — 19 tools
|
|
54
|
+
|
|
55
|
+
| Group | Tools |
|
|
56
|
+
|---|---|
|
|
57
|
+
| Connect | `get_started` · `connect_demobites` · `check_connection` · `get_recording_options` |
|
|
58
|
+
| Read | `get_status` · `list_bites` · `list_releases` · `get_release` · `list_languages` |
|
|
59
|
+
| Draft & edit | `create_release` · `update_release` · `assign_bites_to_release` · `update_center_settings` · `add_language` · `update_demo_center` |
|
|
60
|
+
| Publish — with your approval | `publish_release` · `unpublish_release` · `remove_language` · `publish_demo_center` |
|
|
61
|
+
|
|
62
|
+
The server describes itself: any client's `tools/list` returns every tool with
|
|
63
|
+
its full input schema, straight from the running code.
|
|
64
|
+
|
|
65
|
+
### You stay in charge
|
|
66
|
+
|
|
67
|
+
Draft work executes directly, exactly like clicking around the product. But
|
|
68
|
+
anything that touches a **public** page is two-phase: the tool returns a
|
|
69
|
+
human-readable preview plus a single-use confirmation token, your agent shows
|
|
70
|
+
you the preview, and only your go-ahead executes it. Tokens expire in ten
|
|
71
|
+
minutes, are bound to the exact action and arguments, and every management
|
|
72
|
+
call lands in an audit log.
|
|
73
|
+
|
|
74
|
+
### Plans
|
|
75
|
+
|
|
76
|
+
Connecting and reading are open. Managing requires the **Grow** plan.
|
|
77
|
+
Recording works on every plan.
|
|
78
|
+
|
|
79
|
+
Full guide: [Manage from your agent](https://www.demobites.com/docs/bites/manage-from-your-agent)
|
|
80
|
+
|
|
34
81
|
## What's in this repository
|
|
35
82
|
|
|
36
83
|
| Directory | What it is |
|
package/package.json
CHANGED