# Denik (npm · @denik.me/mcp)

Book appointments, check availability, list services and create payment links for a Denik business.

- Trust score: 64/100 (medium)
- Change this week: 0
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-26

## Components

- npm · `@denik.me/mcp`: 64/100 (this document), [markdown](https://verifymcp.io/servers/me-denik-denik/denik-me-mcp.md), [page](https://verifymcp.io/servers/me-denik-denik/denik-me-mcp)

## Channel facts

- Registry: `npm`
- Package: `@denik.me/mcp`
- Version: `0.15.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-26.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 31 of 96 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 19/100
  - Repository check failed: no source repository is declared.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 6 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 78/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 2239 tokens (~101/item across 22 items; 22 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 79/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 37% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 22 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 23 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the Denik MCP server?

Denik runs locally as an npm package, launched with npx -y @denik.me/mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add me-denik-denik -- npx -y @denik.me/mcp
```

### Cursor

```json
{
  "mcpServers": {
    "me-denik-denik": {
      "command": "npx",
      "args": [
        "-y",
        "@denik.me/mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "me-denik-denik": {
      "command": "npx",
      "args": [
        "-y",
        "@denik.me/mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add me-denik-denik -- npx -y @denik.me/mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "me-denik-denik": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@denik.me/mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add me-denik-denik --command npx --arg -y --arg @denik.me/mcp
```

### Hermes

```yaml
mcp_servers:
  me-denik-denik:
    command: "npx"
    args: ["-y", "@denik.me/mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "me-denik-denik": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "@denik.me/mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add me-denik-denik -t stdio -c npx -a -y @denik.me/mcp
```

### Other

```json
{
  "mcpServers": {
    "me-denik-denik": {
      "command": "npx",
      "args": [
        "-y",
        "@denik.me/mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-25 (score 64, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-09-19 (score 64)

First indexed and scored.

## MCP tools (22)

### `list_events` (~100 tokens)

Lista citas del negocio. Útil para '¿qué tengo hoy?', '¿qué hay mañana?'. Acepta rango de fechas ISO y filtros.

Input parameters:

- `attended` (boolean)
- `customerId` (string)
- `from` (string): ISO date inicio (inclusive)
- `limit` (number)
- `serviceId` (string)
- `status` (string)
- `to` (string): ISO date fin (inclusive)

### `get_event` (~35 tokens)

Devuelve el detalle de una cita por ID (incluye customer, service, meetingLink).

Input parameters:

- `eventId` (string, required)

### `list_services` (~27 tokens)

Lista los servicios activos de la org. Úsalo para resolver IDs antes de agendar.

### `get_service_public_url` (~31 tokens)

Devuelve el link público de booking de un servicio para compartir.

Input parameters:

- `serviceId` (string, required)

### `list_customers` (~77 tokens)

Lista los clientes de la org paginado (primeros 20 por default, orden alfabético). Útil para dar overview cuando el usuario pregunta '¿qué clientes tengo?' sin especificar. Retorna {total, hasMore, customers}.

Input parameters:

- `limit` (number): Máximo 100
- `offset` (number)

### `find_customer` (~29 tokens)

Busca clientes por nombre, email o teléfono. Hasta 20 resultados.

Input parameters:

- `q` (string, required)

### `get_customer` (~36 tokens)

Devuelve el detalle completo de un cliente por ID (displayName, email, tel, notes).

Input parameters:

- `customerId` (string, required)

### `get_customer_appointments` (~35 tokens)

Historial de citas de un cliente (últimas 50, más recientes primero).

Input parameters:

- `customerId` (string, required)

### `get_today_summary` (~39 tokens)

Resumen del día: total de citas, confirmadas, canceladas, no-shows, ingresos. La tool 'estrella' del grupo.

### `cancel_event` (~33 tokens)

Cancela una cita (borra Meet/Zoom, jobs, marca CANCELLED).

Input parameters:

- `eventId` (string, required)

### `reschedule_event` (~61 tokens)

Mueve una cita a un nuevo horario. Si no se pasa `end`, mantiene la duración original.

Input parameters:

- `end` (string): Nuevo fin ISO (opcional)
- `eventId` (string, required)
- `start` (string, required): Nuevo inicio ISO

### `mark_attendance` (~44 tokens)

Marca si el cliente asistió a la cita (true/false) o limpia (null).

Input parameters:

- `attended` (boolean|null, required)
- `eventId` (string, required)

### `create_event` (~55 tokens)

Agenda una cita manual. Requiere serviceId, customerId, start ISO.

Input parameters:

- `customerId` (string, required)
- `notes` (string)
- `serviceId` (string, required)
- `start` (string, required)

### `create_customer` (~59 tokens)

Da de alta un cliente nuevo en la org. Si ya existe uno con ese email, devuelve el existente.

Input parameters:

- `displayName` (string, required)
- `email` (string)
- `notes` (string)
- `tel` (string)

### `update_event` (~88 tokens)

Actualiza campos seguros de una cita (notas, pagado, método de pago, título, status). Para cambiar horario usa reschedule_event; para cancelar usa cancel_event.

Input parameters:

- `eventId` (string, required)
- `notes` (string)
- `paid` (boolean)
- `payment_method` (string)
- `status` (string)
- `title` (string)

### `create_payment_link` (~205 tokens)

Genera el LINK DE PAGO real (MercadoPago) de un servicio de pago en un horario concreto y devuelve `checkoutUrl` para mandárselo al cliente. Devuelve `amount` (lo que se cobra ahora: total o anticipo) y `balanceDue` (lo que pagará en el establecimiento). Verifica que el slot siga libre antes de cobrar. La CITA SE CREA SOLA cuando el pago se aprueba — no llames create_event después. Para cobrar el saldo de una cita ya reservada con anticipo usa settle_event_balance (mostrador). Servicios sin cobro en línea devuelven error.

Input parameters:

- `customer` (object, required)
- `payChoice` (string): Sólo para servicios donde el cliente elige cómo pagar. 'on_site' NO genera link.
- `serviceSlug` (string, required)
- `start` (string, required): Inicio en ISO 8601 con timezone. Debe ser un slot libre del servicio.

### `get_org_stats` (~37 tokens)

Estadísticas de la org en un rango custom (from/to ISO).

Input parameters:

- `from` (string, required)
- `to` (string, required)

### `get_sales` (~121 tokens)

Cuánto DINERO entró en un rango: total, desglose por servicio, por método de pago y saldos pendientes. Imputa por FECHA DE COBRO. No es comparable con get_org_stats ni get_today_summary, que cuentan por fecha de la CITA: que no cuadren no es un error, son dos preguntas distintas. Nunca los sumes ni los restes entre sí.

Input parameters:

- `from` (string): ISO o YYYY-MM-DD. Default: hoy.
- `to` (string): ISO o YYYY-MM-DD. Default: hoy.

### `add_agenda_block` (~142 tokens)

Aparta un rato de la agenda para que nadie pueda reservarlo: comida, junta, vacaciones. No es una cita — no lleva cliente ni servicio. Pasa `end` o `duration`; si no, dura una hora.

Input parameters:

- `allDay` (boolean): Bloquea el día completo.
- `duration` (number): Minutos. Default 60.
- `end` (string): Fin en ISO (alternativa a duration).
- `start` (string, required): Inicio en ISO. No se redondea.
- `title` (string): Qué es: 'Comida', 'Junta', 'Vacaciones'. Default 'Bloqueado'.

### `settle_event_balance` (~125 tokens)

Registra el cobro del SALDO pendiente de una cita que se reservó con anticipo. Sólo métodos de mostrador (cash|transfer|card): no genera un link de pago. El monto que falta ya está en la cita (`balanceDue` de get_event), no se especifica aquí. Entra al corte de caja del día de HOY, no al día de la reserva. Requiere aprobación del dueño.

Input parameters:

- `eventId` (string, required)
- `method` (string): Cómo pagó. Si se omite, se registra como efectivo.

### `discover_tools` (~139 tokens)

Busca entre TODAS las herramientas de Denik, incluidas las que no están en tu lista. Úsala antes de decirle al usuario que no puedes hacer algo. Sin `query` ni `domain` devuelve el catálogo completo. Lo que encuentres se ejecuta con `run_tool`.

Input parameters:

- `domain` (string): Filtro por área. Sirve para inventariar un dominio completo.
- `limit` (number): Máximo de resultados (default 25).
- `query` (string): Qué buscas, en español y con las palabras del usuario (ej. 'recordatorios', 'bloquear horario', 'cuánto vendí').

### `run_tool` (~105 tokens)

Ejecuta cualquier herramienta de Denik por su nombre, esté o no en tu lista. Los `params` son los del `inputSchema` que devolvió `discover_tools`. Si la respuesta trae `error: needs_confirmation`, la acción NO falló: quedó esperando la aprobación del dueño, que la ve en esta misma conversación. No reintentes.

Input parameters:

- `name` (string, required): Nombre exacto de la herramienta.
- `params` (object): Argumentos de esa herramienta.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/me-denik-denik/denik-me-mcp#diagnostics

## Score history

- 2026-09-26: 64
- 2026-09-25: 64
- 2026-09-24: 64
- 2026-09-23: 64
- 2026-09-22: 64
- 2026-09-21: 64
- 2026-09-20: 64
- 2026-09-19: 64

## Common questions

### What is the Denik MCP server?

Denik is an MCP server listed in the public MCP registry as me.denik/denik. Book appointments, check availability, list services and create payment links for a Denik business. This page covers its npm package (@denik.me/mcp).

### Is the Denik MCP server safe to use?

Denik scores 64 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 26 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the Denik MCP server expose?

Denik exposes 22 tools: list_events, get_event, list_services, get_service_public_url, list_customers, and 17 more. Their descriptions and schemas cost roughly 1,623 tokens of context every time the server is loaded.

### Is the Denik MCP server still maintained?

Denik is still listed as active in the MCP registry. We last reached this channel on 26 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the Denik MCP server under?

Denik declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/@denik.me/mcp
- Socket report: https://socket.dev/npm/package/@denik.me/mcp
- Website: https://denik.me/
- Changelog RSS feed: https://verifymcp.io/servers/me-denik-denik/denik-me-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/me-denik-denik/denik-me-mcp.json
- HTML version of this page: https://verifymcp.io/servers/me-denik-denik/denik-me-mcp
