@neonexai/beebole-mcp 1.0.0 → 1.0.1
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 +8 -8
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -65,30 +65,30 @@ Requisitos: **Node ≥ 18** y una **API key de Beebole** (`app.beebole.com → S
|
|
|
65
65
|
|
|
66
66
|
### A) Local en el PC del cliente (recomendado · stdio)
|
|
67
67
|
|
|
68
|
-
|
|
68
|
+
Publicado en npm como **[`@neonexai/beebole-mcp`](https://www.npmjs.com/package/@neonexai/beebole-mcp)**.
|
|
69
|
+
Se ejecuta con `npx`, sin clonar nada; `@latest` trae siempre la última versión:
|
|
69
70
|
|
|
70
71
|
```bash
|
|
71
|
-
claude mcp add beebole \
|
|
72
|
+
claude mcp add beebole -s user \
|
|
72
73
|
--env BEEBOLE_API_KEY=TU_API_KEY \
|
|
73
|
-
-- npx -y
|
|
74
|
+
-- npx -y @neonexai/beebole-mcp@latest
|
|
74
75
|
```
|
|
75
76
|
|
|
76
|
-
- `-s user` (scope usuario) lo deja disponible en **todos los proyectos** de ese PC
|
|
77
|
-
```bash
|
|
78
|
-
claude mcp add beebole -s user --env BEEBOLE_API_KEY=TU_API_KEY -- npx -y github:NeoNexAI/beebole-mcp
|
|
79
|
-
```
|
|
77
|
+
- `-s user` (scope usuario) lo deja disponible en **todos los proyectos** de ese PC.
|
|
80
78
|
- En **Claude Desktop**, añade el bloque equivalente en su `mcp.json`:
|
|
81
79
|
```json
|
|
82
80
|
{
|
|
83
81
|
"mcpServers": {
|
|
84
82
|
"beebole": {
|
|
85
83
|
"command": "npx",
|
|
86
|
-
"args": ["-y", "
|
|
84
|
+
"args": ["-y", "@neonexai/beebole-mcp@latest"],
|
|
87
85
|
"env": { "BEEBOLE_API_KEY": "TU_API_KEY" }
|
|
88
86
|
}
|
|
89
87
|
}
|
|
90
88
|
}
|
|
91
89
|
```
|
|
90
|
+
- Alternativa sin npm (instala desde GitHub; **no** auto-actualiza, `npx` cachea el clon):
|
|
91
|
+
`npx -y github:NeoNexAI/beebole-mcp`.
|
|
92
92
|
|
|
93
93
|
Verifica la key **antes** de añadirlo (debe responder con tu nombre):
|
|
94
94
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neonexai/beebole-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "MCP server para Beebole (control de horas) — NeoNexAI. API GraphQL nueva (app.beebole.com): ~24 tools curadas (proyectos, tareas, personas, fichaje de horas, timesheets, informes) + passthrough GraphQL (search/describe/graphql) para cobertura total (87 queries + 745 mutations). Transportes: stdio (local) + Streamable HTTP (remoto).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -36,6 +36,18 @@
|
|
|
36
36
|
"type": "git",
|
|
37
37
|
"url": "git+https://github.com/NeoNexAI/beebole-mcp.git"
|
|
38
38
|
},
|
|
39
|
+
"homepage": "https://github.com/NeoNexAI/beebole-mcp#readme",
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/NeoNexAI/beebole-mcp/issues"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"mcp",
|
|
45
|
+
"model-context-protocol",
|
|
46
|
+
"beebole",
|
|
47
|
+
"time-tracking",
|
|
48
|
+
"graphql",
|
|
49
|
+
"neonexai"
|
|
50
|
+
],
|
|
39
51
|
"publishConfig": {
|
|
40
52
|
"access": "public"
|
|
41
53
|
}
|