@peekdev/mcp 0.1.0-alpha.7 → 0.1.0-alpha.8
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 +18 -0
- package/package.json +17 -2
package/README.md
CHANGED
|
@@ -107,6 +107,24 @@ Local-only. No network destinations. No telemetry. The MCP transport is stdio ov
|
|
|
107
107
|
|
|
108
108
|
Full data-handling policy: [`docs/peek/PRIVACY_POLICY.md`](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/PRIVACY_POLICY.md). Threat model: [`docs/peek/THREATMODEL.md`](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/THREATMODEL.md).
|
|
109
109
|
|
|
110
|
+
## Distribution (maintainer-facing)
|
|
111
|
+
|
|
112
|
+
> This section is for the maintainer's submission workflow at Phase 5 launch.
|
|
113
|
+
> If you're a user, you don't need any of this — just `npx @peekdev/cli init`.
|
|
114
|
+
|
|
115
|
+
peek is listed (or queued for listing) on the discovery surfaces below.
|
|
116
|
+
Each linked file is a **submission scaffold** with pre-filled metadata
|
|
117
|
+
audited against the registry's current schema as of 2026-05-30 — not a
|
|
118
|
+
user-facing install guide.
|
|
119
|
+
|
|
120
|
+
- [Official MCP Registry submission](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/distribution/modelcontextprotocol-servers.md) — `server.json` for `registry.modelcontextprotocol.io` via `mcp-publisher` CLI. Downstream registries (PulseMCP, others) ingest from here.
|
|
121
|
+
- [PulseMCP submission](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/distribution/pulsemcp.json) — URL-only form + auto-ingest from the MCP Registry.
|
|
122
|
+
- [Smithery submission](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/distribution/smithery.json) — MCPB bundle uploaded via `smithery mcp publish`.
|
|
123
|
+
- [mcp.so submission](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/distribution/mcp-so.md) — web-form submission with the source content paste-ready.
|
|
124
|
+
- [Claude Code skill standalone install](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/distribution/claude-code-skill.md) — curl recipe for users who want the Claude Code skill without running `peek init`.
|
|
125
|
+
|
|
126
|
+
Launch order is documented in [`docs/peek/distribution/README.md`](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/distribution/README.md) (CWS first, then the MCP-registry fan-out).
|
|
127
|
+
|
|
110
128
|
## License
|
|
111
129
|
|
|
112
130
|
Apache 2.0. The bundled rrweb engine remains MIT-licensed; see `NOTICE`.
|
package/package.json
CHANGED
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peekdev/mcp",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.8",
|
|
4
4
|
"description": "peek native messaging host + stdio MCP server. Owns ~/.peek/sessions.db (better-sqlite3) and bridges the browser extension, CLI, and AI tools to a single local source of truth (ADR-0007).",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"peek",
|
|
7
|
+
"mcp",
|
|
8
|
+
"mcp-server",
|
|
9
|
+
"model-context-protocol",
|
|
10
|
+
"claude-code",
|
|
11
|
+
"cursor",
|
|
12
|
+
"browser",
|
|
13
|
+
"rrweb",
|
|
14
|
+
"ai-coding-agent"
|
|
15
|
+
],
|
|
5
16
|
"license": "Apache-2.0",
|
|
17
|
+
"funding": {
|
|
18
|
+
"type": "github",
|
|
19
|
+
"url": "https://github.com/sponsors/harry-harish"
|
|
20
|
+
},
|
|
6
21
|
"type": "module",
|
|
7
22
|
"bin": {
|
|
8
23
|
"peek-mcp": "./dist/index.js"
|
|
@@ -43,7 +58,7 @@
|
|
|
43
58
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
44
59
|
"better-sqlite3": "^12.10.0",
|
|
45
60
|
"zod": "^3.25.76",
|
|
46
|
-
"@cubenest/rrweb-core": "0.1.0-alpha.
|
|
61
|
+
"@cubenest/rrweb-core": "0.1.0-alpha.4"
|
|
47
62
|
},
|
|
48
63
|
"devDependencies": {
|
|
49
64
|
"@types/better-sqlite3": "^7.6.13",
|