Back to tracker
Plugin tracker
Tools
Explore what tracked Claude Connectors and ChatGPT Plugins can actually do. Search by tool, Plugin, Brand, category, verb, or access requirement.
Latest snapshot2026-09-11USmethodology registry-public-v1
Searchable tools
113,017
Authless tools
7,424
Auth required
100,766
Described tools
61,166
113,017 tools
- Create speech generationcreative · Generate speech from a text prompt. This is the tool for any request to create speech. Returns at once with flow_id, node_id and session_ids, plus a url the user can open to keep editing on the canvas. If a view renders it tracks progress on its own; otherwise poll creative_get_flow_run_status with the flow_id and session_ids until all_completed or has_failures is true.
Pass that flow_id back to add to the same flow; omit it and a flow is created.
If this generation will feed another (lipsync, a voiceover), call creative_create_flow first and pass that flow_id here and to every related call — nodes on different flows cannot be connected.
Spends credits: pass estimate_only to price a run before committing to it, and never call this a second time to retry — that starts and charges a second generation.ElevenLabsElevenLabs
PluginrequiredContent & Design - Create speech to textcreative · Transcribe speech in an audio file into text. This is the tool for any request to transcribe, caption or "what does this audio say". Pass connect_from with the audio node already on the flow and it starts at once; omit it and a picker is shown to the user that lets them record from their microphone or pick a local file, then uploads the audio and starts the transcription itself. Returns flow_id, node_id and session_ids, plus a url the user can open to keep editing on the canvas. If a view renders it tracks progress on its own; otherwise poll creative_get_flow_run_status until all_completed or has_failures is true — the transcript comes back in `transcripts`.
Pass flow_id back to stay on the same flow. Do not call this a second time to retry; that starts and charges a second transcription.ElevenLabsElevenLabs
PluginrequiredContent & Design - Create testagents · Create an agent response test.ElevenLabsElevenLabs
PluginrequiredContent & Design - Create toolagents · Create an ElevenLabs Agent tool (client, webhook, or other type per the request body).ElevenLabsElevenLabs
PluginrequiredContent & Design - Create video generationcreative · Generate a video from a text prompt. This is the tool for any request to create a video. Returns at once with flow_id, node_id and session_ids, plus a url the user can open to keep editing on the canvas. If a view renders it tracks progress on its own; otherwise poll creative_get_flow_run_status with the flow_id and session_ids until all_completed or has_failures is true.
Pass that flow_id back to add to the same flow; omit it and a flow is created.
If this generation will feed another (lipsync, a voiceover), call creative_create_flow first and pass that flow_id here and to every related call — nodes on different flows cannot be connected.
Spends credits: pass estimate_only to price a run before committing to it, and never call this a second time to retry — that starts and charges a second generation.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete MCP serveragents · Delete a registered MCP server.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete agentagents · Delete an ElevenLabs Agent.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete conversation triage ticketagents · Delete a conversation triage ticket. Restricted to the ticket creator or a workspace admin.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete draftagents · Delete the draft of an ElevenLabs Agent.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete knowledge base documentagents · Delete a knowledge base document.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete phone numberagents · Delete a phone number from the workspace.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete procedureagents · Remove a procedure from an agent branch.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete procedure draftagents · Delete the draft of a procedure on an agent branch.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete testagents · Delete an agent response test.ElevenLabsElevenLabs
PluginrequiredContent & Design - Delete toolagents · Delete an ElevenLabs Agent tool.ElevenLabsElevenLabs
PluginrequiredContent & Design - Design a voicecreative · Design a brand-new voice from a text description. Not for picking a voice that already exists — use creative_list_voices for that. Needs two things from the user, never invented or auto-generated: the actual line the previews will speak (text, 100-1000 characters) and its language. Returns three previews to choose between — the result renders a picker; once the user picks one, call creative_save_designed_voice with its generated_voice_id to keep it in the workspace's voice library. The rendered view lets the user edit the line themselves and regenerate; view_state_id is how it does that and is never something you should set.
Spends credits: never call this a second time to retry — that generates and charges for three more previews.ElevenLabsElevenLabs
PluginrequiredContent & Design - Duplicate agentagents · Duplicate an existing ElevenLabs Agent. API reference: https://elevenlabs.io/docs/api-reference/agents/duplicateElevenLabsElevenLabs
PluginrequiredContent & Design - Edit an imagecreative · Edit an existing image already on this flow: pass its node_id as connect_from and it starts at once. That node can be one an earlier creative_generate_image call on this same flow just produced ("make it darker", "same image but at sunset"), one from creative_add_flow_asset_node, or one from creative_upload_flow_reference. It must be on this flow_id — pass back the flow_id the earlier call returned rather than letting a new flow be created; nodes on different flows cannot be connected. connect_from is required; a call with none raises — call creative_upload_flow_reference first for a file on the user's own machine. Never say this connector cannot edit images, and never ask the user to attach a file to the chat.
Returns flow_id, node_id and session_ids, plus a url to keep editing on the canvas. If a view renders it tracks progress on its own; otherwise poll creative_get_flow_run_status until all_completed or has_failures is true.
Spends credits: never call this a second time to retry.
For an image edit driven by a reference — 'change X into Y in this image' — use gpt-image-2 unless the user names a model. It is the default for this specifically; the plain text-to-image default does not apply once a reference is wired.ElevenLabsElevenLabs
PluginrequiredContent & Design - Finalize an asset uploadcreative · Call after the PUT to the upload_url succeeds; verifies the bytes landed and makes the asset usable as a reference. Pass flow_id to place the uploaded file on that flow as a reference node in the same call — its modality (image/video/audio) is derived from the file itself — then pass the returned node_id as connect_from to a generation tool. Pass node_id too when you already have a placeholder reference node waiting for this file — it fills that node instead of creating a new one.ElevenLabsElevenLabs
PluginrequiredContent & Design - Generate in a flowcreative · Generate an image, video or speech in one call: creates a flow when flow_id is omitted, adds the node, and starts the generation. Returns flow_id, node_id and session_id, plus a link the user can open to keep editing on the canvas. Use this instead of creative_create_flow + creative_add_flow_node + creative_run_flow_nodes for a single generation.
Prefer creative_generate_image, creative_generate_video or creative_generate_speech when the modality is one of those — they are the same thing with node_type already set. Use this one for the other node types, and the three-step path only to wire several nodes together.
If this generation will feed another (lipsync, a voiceover), call creative_create_flow first and pass that flow_id here and to every related call — nodes on different flows cannot be connected.
AFTER calling: if a view renders it tracks progress on its own; otherwise poll creative_get_flow_run_status with the flow_id and session_ids until all_completed or has_failures is true. Pass estimate_only to price a run first. Do not call this again to retry — a second call starts a second generation and is charged again.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get MCP serveragents · Get a single registered MCP server.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get a flowcreative · Read a flow's nodes, connections and per-node run state, so an existing flow can be inspected before it is changed.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get agentagents · Get the full configuration for an ElevenLabs Agent.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get agent knowledge base sizeagents · Get the size of an ElevenLabs Agent's knowledge base.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get agent linkagents · Get the shareable link for an ElevenLabs Agent.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get agent summariesagents · Get lightweight summaries for one or more ElevenLabs Agents.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get agent topicsagents · Get the conversation topics surfaced for an ElevenLabs Agent.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get agent widgetagents · Get widget configuration for an ElevenLabs Agent.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get available assetscreative · Search the assets already in this workspace's library, so an existing upload can be used as a reference instead of asking the user to upload one again. Pass asset_ids instead to look up specific assets already known by id. Each row carries a short-lived preview_url; the asset_id itself goes to creative_add_flow_asset_node, or to creative_finalize_asset_upload with a flow_id, whose returned node_id is then passed as connect_from to a generation tool.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get branchagents · Get a single branch of an ElevenLabs Agent.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get conversationagents · Get the details of a conversation, including its transcript and analysis results.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get conversation triage ticketagents · Get a conversation triage ticket by ID.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get conversation triage ticket assignable usersagents · List workspace members who can be assigned a conversation triage ticket for an agent, flagged with whether they currently have at least viewer access to the agent.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get flow run statuscreative · Check whether a run has finished and read its generations, without showing anything to the user — this never renders a view. Poll it with the flow_id and session_ids a run returned, waiting poll_after_seconds between calls, until all_completed or has_failures is true. Call creative_show_flow_results instead when the goal is to put the results in front of the user.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get knowledge base dependent agentsagents · List the agents that depend on a knowledge base document.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get knowledge base documentagents · Get a single knowledge base document.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get model guidecreative · Read prompting guidance for a specific model. Worth calling before writing a prompt for an unfamiliar model, since guidance differs a lot between them.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get model schemacreative · Read a model's configurable parameters — names, types, and allowed values — without changing anything. Call this for the effective model_id before passing model_parameters to creative_update_node: names and allowed values vary by model, so a name guessed from a different model (for example 'duration' instead of 'duration_secs') fails validation rather than being coerced. Reference or connectable fields (start_frame, reference_images, reference_audios, and similar input ports) are wired with creative_connect_flow_nodes, never passed inside model_parameters.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get more toolsget · Call this when the user's request cannot be completed with any of the available tools. Describe the capability you were looking for, so it can inform which tools get built next. Do not call it when an available tool already covers the request.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get phone numberagents · Get a single phone number.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get procedureagents · Get a single procedure on an agent branch.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get procedure draftagents · Get the draft of a procedure on an agent branch.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get testagents · Get a single agent response test.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get test runagents · Get the details of a single test-suite invocation (test run).ElevenLabsElevenLabs
PluginrequiredContent & Design - Get toolagents · Get a single ElevenLabs Agent tool.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get tool dependent agentsagents · List the agents that depend on a tool.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get tool executionsagents · Get the execution history for a tool.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get version metadataagents · Get metadata for a specific version of an ElevenLabs Agent.ElevenLabsElevenLabs
PluginrequiredContent & Design - Get view statecreative · For the view to call when it mounts, not for you — never call this yourself. Reads back the state a view previously saved under view_state_id, so a view reopened in an old chat can rehydrate.ElevenLabsElevenLabs
PluginrequiredContent & Design - List MCP server toolsagents · List the tools exposed by a registered MCP server.ElevenLabsElevenLabs
PluginrequiredContent & Design
What is Tool Explorer?
Tool Explorer indexes the callable tool names and descriptions attached to public registry profiles. It is useful for seeing what agents can actually invoke, not just which profile exists.
How do category and verb filters work?
Category filters use the live registry category rollup. Verb filters use the public tool insights rollup, so the page stays backed by the same read models as the tracker charts.
Why do auth requirements matter?
Auth requirements show whether a tool is likely usable without account connection, requires authentication, is private, or is unknown in the current snapshot.