Documentation Index
Fetch the complete documentation index at: https://docs.waniwani.ai/llms.txt
Use this file to discover all available pages before exploring further.
withWaniwani(server) is an optional convenience that instruments an MCP server. It activates Platform tracking when an API key is configured, and stays a no-op-but-still-useful wrapper when it isn’t.
Not required for OSS flows.
createFlow works without withWaniwani. Use this wrapper when you want auto-tracking, session-id bridging, or widget metadata forwarding on top.What it does, with WANIWANI_API_KEY
Every tool invocation produces a tool.called event containing name, type, duration, status, input, output, client info, and session correlation. Flow graphs are synced to the dashboard so the funnel view lights up automatically.
What it does, without an API key
The wrapper still adds two genuinely useful things, even with no key configured:- Transport session-ID bridging. When the MCP transport carries a session ID via the
Mcp-Session-Idheader but the request_metadoesn’t include one, the wrapper copies it into_meta.waniwani/sessionIdso flow nodes and downstream tools can see the correlation. - Widget definition metadata forwarding. Widget keys declared on a tool’s definition
_meta(openai/outputTemplate,ui/resourceUri, etc.) are forwarded into each tool result’s_meta, so chat UIs that only see results can still render widgets.
When to use it
| You want | Use withWaniwani? |
|---|---|
| Only run OSS flows, no telemetry | Optional (still useful for session bridging) |
| OSS flows + Platform tracking | Yes |
| Hosted everything (flow state + tracking + funnel) | Yes |
Just custom event tracking via waniwani().track() | No, call track() directly |
Options
The client used for tracking. Defaults to
waniwani(), which picks up WANIWANI_API_KEY from the environment.Classify tools into dashboard buckets:
"pricing", "product_info", "availability", "support", or "other". Accepts a literal or a function that maps a tool name to a type.Extra fields merged into every
tool.called event. Use this to tag deployments, tenants, or releases.Force a flush after every tool call. Turn this on in serverless runtimes where the process may be frozen between invocations. Leave it off for long-running Node processes.
Inject a short-lived widget tracking token into tool responses under
_meta.waniwani, so browser widgets can post events directly to WaniWani without a proxy route. Without an API key, the token is omitted and only the endpoint metadata is injected.Callback for non-fatal tracking errors. Tracking failures never block tool execution; use this callback when you want visibility into them.
Tracked event shape
| Field | Description |
|---|---|
name | Registered tool name |
type | Category derived from the toolType option |
durationMs | Handler execution time |
status | "ok" or "error" |
errorMessage | Present when the handler threw or returned isError |
input | Tool arguments |
output | Handler response |
clientName | MCP client name (for example chatgpt, claude) |
clientVersion | MCP client version |
sessionId | Correlated from _meta (see Sessions) |
{ isError: true }) are tracked and then re-thrown or returned unchanged, so your tool’s error contract is preserved.
Custom events inside tools
For anything beyondtool.called, call client.track() from inside a handler. Pass meta: extra._meta so the event is linked to the active MCP session.
Session-scoped client in flows
Inside a flow node,ctx.waniwani is a scoped client that auto-attaches session correlation, so you can call ctx.waniwani.track({ event, properties }) without passing meta.