Plazbot Developer Hub 🚀
Start creating AI Agents for any software you're building.
Coming SoonMCP ServerGet Your API Key
Generate your unique API key to seamlessly integrate Plazbot with your tools and workflows. Start building smarter solutions today.
Read the Documentation
Access our detailed API documentation with guides, examples, and best practices to make your integration process effortless.
Join the Developer CommunityComing Soon
Connect with developers worldwide, share insights, and collaborate on innovative solutions. Be part of the Plazbot ecosystem.
Build your Agents easily
No matter what software you use, you can build your agents with our MCP Server for your users of any software by integrating with their databases and documents.
import { Plazbot } from 'plazbot';
const bot = new Plazbot({
workspaceId: "wks_12345AAAAAAA",
apiKey: "plz_live_sk_abc123"
});
async function run() {
// Setup Agent
await bot.addPrompt({
prompt: "You're the assistant for a local business. You show the products, prices, and address. Never make up or send offers."
});
await bot.addFile({
name: "catalogo.pdf",
file: new Blob(["PDF_DATA_SIMULADA"], { type: 'application/pdf' }),
description: "Local company product catalog"
});
await bot.addApi({
name: "stock-productos",
url: "https://api.tuempresa.com/api/stock",
method: "GET",
description: "Returns the current stock of all products"
});
}
run();