Assistant CoreAssistant Core
Tools & MCP

Custom API Tools

Create HTTP tools that let your assistant call your own APIs.

Custom API Tools are best when you have a simple HTTP API and want the assistant to call it when needed. Common examples include checking order status, creating support tickets, checking inventory, looking up appointments, or sending data to an internal system.

Create A Tool

  1. Open the Admin Dashboard.
  2. Select your assistant.
  3. Go to Tools.
  4. Click New Tool.
  5. Fill in the tool details.
  6. Click Create or Save.

Fields

FieldMeaning
NameA short action-oriented name, for example lookup_order
DescriptionWhen the assistant should use this tool. This is important because the AI uses it to decide whether to call the tool
MethodHTTP method: GET, POST, PUT, PATCH, or DELETE
API URLThe endpoint Assistant Core will call
ParametersInformation the assistant should collect before calling the API
StrictWhen enabled, the parameter schema is stricter to reduce unexpected input

Parameters

Each parameter includes:

FieldMeaning
NameParameter name sent to your API
TypeData type: string, number, integer, boolean, or array
DescriptionClear explanation of what the parameter means
RequiredWhether the value is required
Enum valuesAllowed values when the assistant should choose from a fixed list
Items typeItem type when the parameter is an array

How Requests Are Sent

MethodParameter format
GETQuery string
DELETEQuery string
POSTJSON body
PUTJSON body
PATCHJSON body

Example

An order lookup tool could be configured like this:

FieldValue
Namelookup_order
DescriptionFind shipping status by order ID when the user asks about an order
MethodGET
API URLhttps://api.example.com/orders/status
ParameterRequired string parameter named order_id

When a user asks “Where is order A123?”, the assistant can call the API with order_id=A123, then summarize the result.

Security Notes

  • Do not put API keys directly in a URL if the URL may be exposed.
  • Use a small proxy endpoint if your original API needs complex authentication.
  • Clear tool descriptions reduce accidental tool calls.
  • If a tool changes data, say that clearly in the description so the assistant only calls it when the user intends that action.

On this page