Get started
Botify Agentic Platform
A single API for every Botify agent: crawl and analytics questions, keyword research, SERP and AI-answer monitoring, HTML extraction, SQL over your tables, and more. Call the tools over HTTP, or connect them to an MCP client and let the model pick.
Quick start
On Claude, ChatGPT, Perplexity, Gemini, or your preferred answer engine, ask:
Please install the Botify MCP from https://mcp.botify.com/mcp
Grab a Botify API token, pick a tool from the catalog, and post an item to it. Every tool follows the same request shape.
curl -X POST "http://agents.botify.com/{organization}/{project}/calculator/process" \
-H "Authorization: Bearer $BOTIFY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"item": {}, "config": {}}'
Two ways in
Through an MCP client
Point Cursor, Claude or any MCP-capable client at the MCP endpoint. The model sees the tools, their schemas and picks what it needs.
Straight over HTTP
Use the REST endpoints from your own code. Synchronous for quick calls, batch for many items at once, async for long jobs.
Machine-readable references
- GET /agents — the full catalog with JSON schemas.
- /openapi.json — OpenAPI spec, one operation per tool.
- /docs — Swagger UI (requires a login).
- /skill.md — Markdown index built for coding agents.