@denik.me/mcp 0.4.0 → 0.4.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 CHANGED
@@ -17,7 +17,7 @@ npm i -g @denik/mcp
17
17
  "command": "denik-mcp",
18
18
  "env": {
19
19
  "DENIK_API_KEY": "dk_live_...",
20
- "DENIK_BASE_URL": "https://denik.me"
20
+ "DENIK_BASE_URL": "https://www.denik.me"
21
21
  }
22
22
  }
23
23
  }
package/dist/client.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Fetch wrapper contra el backend de Denik.
3
3
  * Lee `DENIK_API_KEY` y `DENIK_BASE_URL` del env.
4
4
  */
5
- const BASE_URL = process.env.DENIK_BASE_URL ?? "https://denik.me";
5
+ const BASE_URL = process.env.DENIK_BASE_URL ?? "https://www.denik.me";
6
6
  const API_KEY = process.env.DENIK_API_KEY;
7
7
  if (!API_KEY) {
8
8
  // No hacer throw aquí — el servidor MCP debe poder arrancar para listar tools.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@denik.me/mcp",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Denik Agenda MCP stdio server — tools para operar una org desde un agente (p.ej. bot de WhatsApp).",
5
5
  "type": "module",
6
6
  "bin": {