Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

klanex

io.github.chrassy/klanex

Reliable async execution for agent tool calls: schema gating, retries, idempotency, audit trail.

Uptime
100.0%
1 direct probes · 30d
Response
148ms
last probe
Tools
6
callable
Resources
0
readable
Prompts
0
available

Tools · 6

execute

Submit an HTTP call to a third-party API for reliable asynchronous execution. klanex validates the payload (optionally against payload_schema), stores credentials encrypted, executes with automatic re…

get_execution

Fetch the current state of an execution by ID: status (PENDING_APPROVAL|QUEUED|RUNNING|RETRYING|SUCCEEDED|FAILED), attempts, the target response on success, or a classified error on failure. Retryable…

get_usage

Report the account's plan and execution usage for the current calendar month: used, included_executions, remaining, and whether overage is allowed. Check this before large batches to avoid hitting a h…

list_connections

List the account's stored credential connections (token vault). Reference a ready connection by its ID in execute's connection_id instead of passing raw headers — the credential is injected at executi…

list_executions

List this account's executions, newest first, optionally filtered by status or a created_at time range. Returns next_cursor when a page is full; pass it back as cursor for the next page.

replay_execution

Re-run a terminal (SUCCEEDED or FAILED) execution as a brand-new execution: same target, byte-exact original payload, same sealed credentials, fresh attempt counter. This is the outage-recovery path —…

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "klanex": {
      "url": "https://api.klanexai.com/mcp",
      "transport": "streamable-http"
    }
  }
}