@beepflow/mcp 2026.4.3 → 2026.4.4
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 +21 -53
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,67 +1,35 @@
|
|
|
1
1
|
# @beepflow/mcp
|
|
2
2
|
|
|
3
|
-
MCP server
|
|
3
|
+
Beepflow MCP server (stdio).
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
Node `v24.6.0` (see `.nvmrc`).
|
|
5
|
+
## Install
|
|
7
6
|
|
|
7
|
+
### OpenAI Codex
|
|
8
8
|
```sh
|
|
9
|
-
|
|
10
|
-
node --experimental-strip-types src/index.ts
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
## Run (npx)
|
|
14
|
-
```sh
|
|
15
|
-
export BEEPFLOW_ENV=dev
|
|
16
|
-
npx -y @beepflow/mcp
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
## Publish (npm)
|
|
20
|
-
```sh
|
|
21
|
-
make -C mcp publish-dry-run
|
|
22
|
-
make -C mcp publish
|
|
9
|
+
codex mcp add beepflow -- npx -y @beepflow/mcp
|
|
23
10
|
```
|
|
24
11
|
|
|
25
|
-
|
|
26
|
-
- `major` = current year
|
|
27
|
-
- `minor` = current month (no leading zero)
|
|
28
|
-
- `patch` = counter for year+month starting at `0`
|
|
29
|
-
|
|
30
|
-
Check next version:
|
|
12
|
+
### Claude Code
|
|
31
13
|
```sh
|
|
32
|
-
|
|
14
|
+
claude mcp add beepflow -- npx -y @beepflow/mcp
|
|
33
15
|
```
|
|
34
16
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
17
|
+
### OpenCode
|
|
18
|
+
Add to `opencode.json` (or `opencode.jsonc`):
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"$schema": "https://opencode.ai/config.json",
|
|
22
|
+
"mcp": {
|
|
23
|
+
"beepflow": {
|
|
24
|
+
"type": "local",
|
|
25
|
+
"command": ["npx", "-y", "@beepflow/mcp"],
|
|
26
|
+
"enabled": true
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
39
30
|
```
|
|
40
31
|
|
|
41
|
-
|
|
32
|
+
### Gemini CLI
|
|
42
33
|
```sh
|
|
43
|
-
|
|
34
|
+
gemini mcp add beepflow npx -y @beepflow/mcp
|
|
44
35
|
```
|
|
45
|
-
|
|
46
|
-
Switch easy: both targets install same MCP name `beepflow`.
|
|
47
|
-
- `codex-install-dev`: local `src/index.ts`
|
|
48
|
-
- `codex-install-live`: published `npx -y @beepflow/mcp`
|
|
49
|
-
|
|
50
|
-
## Auth tools
|
|
51
|
-
- `auth_email_request_code` `{ "email": "you@domain.com" }`
|
|
52
|
-
- `auth_email_verify_code` `{ "email": "you@domain.com", "code": "123456" }`
|
|
53
|
-
- `auth_google_start` (optional `{ "scopes": "openid email profile" }`)
|
|
54
|
-
- `auth_google_get_token` `{ "requestId": "..." }`
|
|
55
|
-
- `auth_sign_out`
|
|
56
|
-
|
|
57
|
-
## Spaces tool
|
|
58
|
-
- `spaces_list`
|
|
59
|
-
|
|
60
|
-
## Config
|
|
61
|
-
- `BEEPFLOW_ENV=dev|live` (default `live`)
|
|
62
|
-
- Override:
|
|
63
|
-
- `BEEPFLOW_WORKSPACE_URL`
|
|
64
|
-
- `BEEPFLOW_JWT`
|
|
65
|
-
- `BEEPFLOW_AUTH_URL`
|
|
66
|
-
- `BEEPFLOW_AUTH_DOMAIN`
|
|
67
|
-
- `BEEPFLOW_TOKEN_STORE_PATH`
|