@beepflow/mcp 2026.4.3 → 2026.4.5

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.
Files changed (2) hide show
  1. package/README.md +11 -52
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,67 +1,26 @@
1
1
  # @beepflow/mcp
2
2
 
3
- MCP server for Beepflow. Current tool: list spaces.
3
+ Beepflow MCP server (stdio).
4
4
 
5
- ## Run (dev)
6
- Node `v24.6.0` (see `.nvmrc`).
5
+ ## Install
7
6
 
7
+ ### OpenAI Codex
8
8
  ```sh
9
- export BEEPFLOW_ENV=dev
10
- node --experimental-strip-types src/index.ts
9
+ codex mcp add beepflow -- npx -y @beepflow/mcp
11
10
  ```
12
11
 
13
- ## Run (npx)
12
+ ### Claude Code
14
13
  ```sh
15
- export BEEPFLOW_ENV=dev
16
- npx -y @beepflow/mcp
14
+ claude mcp add beepflow -- npx -y @beepflow/mcp
17
15
  ```
18
16
 
19
- ## Publish (npm)
17
+ ### OpenCode
20
18
  ```sh
21
- make -C mcp publish-dry-run
22
- make -C mcp publish
19
+ opencode mcp add
23
20
  ```
21
+ Follow prompts: name `beepflow`, server type `local`, command `npx -y @beepflow/mcp`.
24
22
 
25
- Publish auto tags version using `year.month.counter`:
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:
23
+ ### Gemini CLI
31
24
  ```sh
32
- make -C mcp compute-next-version
25
+ gemini mcp add beepflow npx -y @beepflow/mcp
33
26
  ```
34
-
35
- ## Codex MCP install (local)
36
- ```sh
37
- make -C mcp codex-install-dev
38
- make -C mcp codex-install-live
39
- ```
40
-
41
- Public install:
42
- ```sh
43
- codex mcp add beepflow -- npx -y @beepflow/mcp
44
- ```
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`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beepflow/mcp",
3
- "version": "2026.4.3",
3
+ "version": "2026.4.5",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=24.6.0"