@productbrain/mcp 0.0.1-beta.1 → 0.0.1-beta.3
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/.env.mcp.example +4 -4
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1905 -204
- package/dist/index.js.map +1 -1
- package/dist/{setup-5UDBP4VE.js → setup-V6HIAYXL.js} +4 -4
- package/dist/setup-V6HIAYXL.js.map +1 -0
- package/package.json +6 -25
- package/README.md +0 -239
- package/dist/setup-5UDBP4VE.js.map +0 -1
package/.env.mcp.example
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Product Brain MCP — Environment Variables
|
|
2
2
|
# Copy this file to .env.mcp and fill in your values.
|
|
3
3
|
# In Claude Desktop / Cursor, these are typically set via the MCP config's "env" block.
|
|
4
4
|
|
|
5
5
|
# ── Cloud Mode (recommended) ──────────────────────────────────────────
|
|
6
6
|
#
|
|
7
|
-
# PRODUCTBRAIN_API_KEY — Your API key from
|
|
7
|
+
# PRODUCTBRAIN_API_KEY — Your API key from Settings → API Keys.
|
|
8
8
|
# Starts with pb_sk_. This is the only required variable.
|
|
9
9
|
#
|
|
10
10
|
# PRODUCTBRAIN_URL — Override the backend URL.
|
|
11
|
-
# Defaults to
|
|
11
|
+
# Defaults to Product Brain Cloud. Set to http://localhost:3210
|
|
12
12
|
# for local development.
|
|
13
13
|
|
|
14
14
|
# PRODUCTBRAIN_API_KEY=pb_sk_your_key_here
|
|
15
|
-
# PRODUCTBRAIN_URL=
|
|
15
|
+
# PRODUCTBRAIN_URL=
|
|
16
16
|
|
|
17
17
|
# ── Self-Hosted Mode ──────────────────────────────────────────────────
|
|
18
18
|
#
|
package/dist/cli/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// src/cli/index.ts
|
|
4
4
|
var subcommand = process.argv[2];
|
|
5
5
|
if (subcommand === "setup") {
|
|
6
|
-
const { runSetup } = await import("../setup-
|
|
6
|
+
const { runSetup } = await import("../setup-V6HIAYXL.js");
|
|
7
7
|
await runSetup();
|
|
8
8
|
} else {
|
|
9
9
|
await import("../index.js");
|