Source Preview
Metadata
- name
create-tool- description
Select, define, create, inspect, update, attach, detach, and verify reusable Vapi tools through the public API. Use for native call-control tools, supported provider integrations, API Request tools, custom function tools, MCP tools, tool messages, credentials, or configuration-preserving assistant attachment changes.- license
MIT- compatibility
Internet access and VAPI_API_KEY are required only for live Vapi API operations.- metadata
author: vapi version: "2.0"
Vapi Tool Management
Choose the documented tool type that directly provides the requested capability. Default to a payload or implementation plan unless the user explicitly requests a live Vapi mutation.
Safety and Source Rules
- Verify the type and every field against the current Create Tool API, public OpenAPI schema, or type-specific public guide before using it.
- Never imitate a documented Vapi capability with a custom function tool.
- Never invent an endpoint, request schema, destination, phone number, assistant ID, tool ID, integration connection, credential, or secret.
- Keep secrets in Vapi credentials or the user's backend. Treat an MCP server URL containing a token as a credential.
- Distinguish tool configuration, assistant attachment, provider connection, and external implementation. They are separate deliverables and success in one does not imply success in another.
Select the Tool Family
| Need | Select |
|---|---|
| End calls, transfer calls, hand off between assistants, send DTMF or SMS, make a SIP request, or handle voicemail | The matching native Vapi tool |
| Use a publicly documented Google Calendar, Google Sheets, Slack, GoHighLevel, or other supported provider action | The exact integration tool after resolving its connection and required resource |
| Call a known HTTP endpoint with a declarative method, URL, headers, and body | apiRequest |
| Send a model-selected function call to custom backend logic that implements Vapi's callback contract | function |
| Discover and use tools from an existing MCP server | mcp with the default Streamable HTTP transport |
Do not choose function merely because the model invokes the capability. Native, integration, API Request, and MCP tools are also model-invoked.
Do not proactively recommend or create a Code Tool (type: "code"); it is not generally available on most accounts. Prefer apiRequest for a known HTTP endpoint or function with the user's server.url for user-hosted callback logic. Discuss a Code Tool only when the user explicitly asks about it, and do not present it as the recommended option.
Read Tool Type Selection before building a payload. Read only the section for the selected family.
Procedure
-
Determine the execution mode.
- Return JSON, code, or a contract when the user asks for a draft or does not clearly authorize a live mutation.
- Call the Vapi API only when the user explicitly asks to create, update, attach, or detach and
VAPI_API_KEYis available. - If the key is unavailable, return ready artifacts and local commands without asking the user to paste it into chat.
-
Inspect before creating.
- Use
GET /tooland match any supplied name and capability to existing tools. - Reuse one suitable existing tool when the match is unambiguous and the user does not require a new resource.
- If several tools plausibly match, ask the user to choose. Never guess an ID.
- Use
GET /tool/{id}before updating an existing tool.
- Use
-
Resolve the capability and dependencies.
- Select the tool family using the table above and current public documentation.
- Resolve every required endpoint, destination, provider connection, calendar, spreadsheet, channel, credential, or MCP server before a live create.
- If one value blocks a valid tool, show the useful proposed contract first and ask only for that value.
-
Build the smallest valid payload.
- Give the model a concise, specific description of when to invoke the tool.
- For types with
function.name, use 1–64 characters matching^[a-zA-Z0-9_-]+$. Generate a stable descriptive name when the user does not supply one. - For
apiRequest, validate its top-levelname, method, URL, headers, body schema, credentials, and timeout against the current public schema. - Define only parameters the model must supply. Keep trusted or secret values outside the model-visible schema.
- Omit spoken
messagesunless progress feedback is useful. When included, use only types currently accepted by the selected tool schema, such asrequest-start,request-response-delayed,request-complete, andrequest-failed.
-
Create or update safely.
- Before a production-affecting mutation, recap the type, capability, external dependencies, and target unless the user's current instruction already unambiguously authorizes that exact mutation.
- Create with
POST /tool. Validate the returnedid, type, callable name where applicable, and requested configuration. - For an update, send the current
typeand only changed top-level fields toPATCH /tool/{id}. When changing a nested object, deep-merge the requested change into that object from the fetched tool and send the merged nested object so its omitted keys are not lost. Do not resend unchanged top-level fields or response-only fields. - Re-fetch the tool and verify the result. Creating or updating a tool does not attach it to an assistant.
-
Attach or detach without losing assistant configuration.
- Read Assistant Attachments before changing an assistant.
GET /assistant/{id}, copy the complete currentmodel, merge the tool ID into or remove it frommodel.toolIds, and preservemodel.toolsplus every unrelated model field.- Send the complete merged model to
PATCH /assistant/{id}. Never patch a hand-written partial model. - Re-fetch the assistant and verify both the requested membership and the preserved model configuration.
-
Implement external behavior only when requested.
- For
apiRequest, Vapi executes the configured HTTP request; do not also build a function callback server. - For
mcp, the MCP server supplies the callable tools; do not duplicate them as individual Vapi function tools. - For a custom
functionwhose backend must be built, read Function Tool Server. Do not load that reference for other tool families.
- For
-
Handle failures honestly.
- On
400, correct a documented shape or validation error before at most one justified retry. - On
401or403, stop for authentication or permission issues. On404, report the missing tool, assistant, destination, or dependency. On5xx, report the service failure. - Never claim creation, update, attachment, detachment, provider connection, or backend implementation succeeded until the associated operation is verified.
- On
API Implementation Examples
Read Tool API Examples when the user requests TypeScript, Python, or cURL implementation code. Read current tool and assistant state before update or attachment changes. Placeholders are acceptable in draft artifacts, never in live requests.