@peekdev/mcp 0.1.0-alpha.7 → 0.1.0-alpha.9
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 +20 -0
- package/package.json +18 -3
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
[](https://github.com/Cubenest/rrweb-stack/blob/main/LICENSE)
|
|
8
8
|
[](https://github.com/Cubenest/rrweb-stack/actions/workflows/ci.yml)
|
|
9
9
|
|
|
10
|
+
Docs: <https://peek.cubenest.in>
|
|
11
|
+
|
|
10
12
|
`@peekdev/mcp` is **two things in one binary**:
|
|
11
13
|
|
|
12
14
|
1. The **stdio MCP server** that AI coding agents (Claude Code, Cursor, Cline, Windsurf, Continue, Zed) speak to when querying your captured browser sessions.
|
|
@@ -107,6 +109,24 @@ Local-only. No network destinations. No telemetry. The MCP transport is stdio ov
|
|
|
107
109
|
|
|
108
110
|
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
111
|
|
|
112
|
+
## Distribution (maintainer-facing)
|
|
113
|
+
|
|
114
|
+
> This section is for the maintainer's submission workflow at Phase 5 launch.
|
|
115
|
+
> If you're a user, you don't need any of this — just `npx @peekdev/cli init`.
|
|
116
|
+
|
|
117
|
+
peek is listed (or queued for listing) on the discovery surfaces below.
|
|
118
|
+
Each linked file is a **submission scaffold** with pre-filled metadata
|
|
119
|
+
audited against the registry's current schema as of 2026-05-30 — not a
|
|
120
|
+
user-facing install guide.
|
|
121
|
+
|
|
122
|
+
- [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.
|
|
123
|
+
- [PulseMCP submission](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/distribution/pulsemcp.json) — URL-only form + auto-ingest from the MCP Registry.
|
|
124
|
+
- [Smithery submission](https://github.com/Cubenest/rrweb-stack/blob/main/docs/peek/distribution/smithery.json) — MCPB bundle uploaded via `smithery mcp publish`.
|
|
125
|
+
- [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.
|
|
126
|
+
- [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`.
|
|
127
|
+
|
|
128
|
+
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).
|
|
129
|
+
|
|
110
130
|
## License
|
|
111
131
|
|
|
112
132
|
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.9",
|
|
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",
|
|
@@ -58,7 +73,7 @@
|
|
|
58
73
|
"url": "https://github.com/Cubenest/rrweb-stack",
|
|
59
74
|
"directory": "packages/peek-mcp"
|
|
60
75
|
},
|
|
61
|
-
"homepage": "https://
|
|
76
|
+
"homepage": "https://peek.cubenest.in",
|
|
62
77
|
"scripts": {
|
|
63
78
|
"build": "tsc -p tsconfig.json && node ./scripts/postbuild.mjs",
|
|
64
79
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|