← zenvault.eu

INDIVIDUAL MCP TOOL

queue_ack

Acknowledge (or nack) a leased job.

zenvault.eunone authenticationAvailability not checked

LIVE ENDPOINT

https://api.zenvault.eu/mcp

No auth detected

Connect to this endpoint to inspect the live schema for queue_ack and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

zenvault.eu

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.zenvault]
url = "https://api.zenvault.eu/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "zenvault": {
      "type": "http",
      "url": "https://api.zenvault.eu/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: zenvault
Remote MCP URL: https://api.zenvault.eu/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "zenvault": {
      "url": "https://api.zenvault.eu/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "zenvault": {
      "type": "http",
      "url": "https://api.zenvault.eu/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "zenvault",
  "transport": "streamable-http",
  "url": "https://api.zenvault.eu/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • create_wakeup — Schedule a webhook call at a future time (one-shot).
  • create_schedule — Recurring webhook on a cron expression until the prepaid days run out.
  • create_deadman — Dead-man switch: if you stop checking in, we fire your alert webhook.
  • checkin_deadman — Check in to a dead-man switch so it does not fire.
  • delayed_delivery — Hand over a payload now; we POST it to the target at a future moment.
  • create_drip — Dump up to 100 items now; we deliver them to your webhook at a fixed rate.
  • notarize — Signed proof that a hash (or your data) existed at this moment.
  • attested_fetch — Fetch a URL and return content plus a signed receipt binding url, status, content hash and time.