Agentic Platform
Documentation API reference Tools Skills

Tools

Calculator

calculator MCP

Perform basic arithmetic operations.

Perform basic arithmetic operations (add, subtract, multiply, divide).

Playground

Your organization, project and token stay in this browser's local storage and are sent straight to the API — this page never sees them.

POST
item
expression required Arithmetic expression to evaluate

Billing

Fixed cost per item requested. The calculation runs inside Botify, so there is nothing to bill beyond the per-call price.

These usage SKUs can be charged on a call.

SKU Credits Description
Tool call 1 per request Charged once per successful item.

Schemas

item is what you send, config how the tool behaves, and the response is what you get back.

Item

object
Properties
expression string required

Arithmetic expression to evaluate

Example
{
  "expression": "string"
}

Response

object
Properties
result integer | number required

Arithmetic expression evaluation result

Example
{
  "result": 0
}

Endpoints

POST http://agents.botify.com/{organization}/{project}/calculator/process
POST http://agents.botify.com/{organization}/{project}/calculator/batch_process
POST http://agents.botify.com/{organization}/{project}/calculator/async_process
POST http://agents.botify.com/{organization}/{project}/calculator/async_batch_process

See running a long job in the background for the polling flow.

cURL

curl -X POST "http://agents.botify.com/{organization}/{project}/calculator/process" \
  -H "Authorization: Bearer $BOTIFY_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "item": {
    "expression": "<expression>"
  }
}'

Over MCP

This tool is exposed as the MCP tool calculator. An MCP client passes organization, project and item as tool arguments. Set up MCP →

Raw metadata