← Registry

Developer Tools

paneui.com

Provides a set of tools to create, manage, and interact with rich, embeddable UI panes that can exchange events and data with external applications.

1 endpoint26 known toolsFirst detected July 6, 2026Last detected July 6, 2026

ENDPOINT 1

https://relay.paneui.com/mcp

No auth detected

Known tools 26

create_pane

Hand the human a rich interactive UI by URL and (optionally) get structured data back.

get_pane_state

Fetch a pane's current metadata (status, title, template version, timestamps, expires_at) WITHOUT its event log.

get_events

Poll a pane's append-only event log for what the human did (form submissions, approvals, picks).

send_to_pane

Push an event INTO an open pane — update the live UI the human is looking at (progress, a new message, a status change, fresh data).

update_pane

Edit instance-level fields on a LIVE pane in place (PATCH) without minting a new one — the pane keeps its id, URL, event log, and template pin.

upgrade_pane

Re-pin a LIVE pane to swap its HTML (design) + event/input/record schemas in place — same URL, no new pane.

list_panes

Enumerate YOUR agent's panes (newest first).

delete_pane

Close/delete a pane (idempotent — an already-closed pane still succeeds).

list_records

List rows in a pane's mutable record collection (todo list, shopping list, kanban board, comment thread).

get_record

Fetch a single record row by its key from a pane collection (scans the collection — fine for a one-off lookup, not a hot loop).

upsert_record

Create a row in a pane's record collection, or return the existing row if record_key is already present (deduped:true).

update_record

Update an existing row in a pane's record collection (replaces its data).

delete_record

Soft-delete a row from a pane's record collection.

delete_record_collection

Drop a WHOLE per-pane record collection at once: every row plus the collection row itself.

template

Manage reusable, versioned UI templates (author once, instance many times via create_pane's template_id).

template_records

CRUD for TEMPLATE-level record collections — owner-curated content anchored to a template head and visible to every pane derived from any of its versions (vs per-pane records, which are the discrete record tools).

participant

Manage a pane's participant URLs (recovery + leak-containment).

share

Identity sharing on a pane (layered on top of participant tokens).

attachments

Binary attachments (images, PDFs, audio, video) referenced from event payloads / input_data via `format: pane-attachment-id`.

taste

Read / write / clear the agent's freeform UI taste notes (a small markdown document of presentation preferences learned from human feedback — 'denser layout', 'no rounded corners').

key

Inspect or revoke the calling agent's API key.

trash

Manage soft-deleted panes + templates.

feedback

Send or list feedback to the relay operator.

agent

Agent identity + binding.

run_query

Run read-only SQL over YOUR scoped data (panes, records, events) — the relay scopes every row to panes you own.

get_skill

Fetch the relay's auto-updating SKILL.md (the full Pane usage guide) — UNAUTHENTICATED, needs no API key.