@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.
Files changed (2) hide show
  1. package/README.md +21 -53
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,67 +1,35 @@
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
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
- 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:
12
+ ### Claude Code
31
13
  ```sh
32
- make -C mcp compute-next-version
14
+ claude mcp add beepflow -- npx -y @beepflow/mcp
33
15
  ```
34
16
 
35
- ## Codex MCP install (local)
36
- ```sh
37
- make -C mcp codex-install-dev
38
- make -C mcp codex-install-live
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
- Public install:
32
+ ### Gemini CLI
42
33
  ```sh
43
- codex mcp add beepflow -- npx -y @beepflow/mcp
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`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beepflow/mcp",
3
- "version": "2026.4.3",
3
+ "version": "2026.4.4",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=24.6.0"