Developers
Connect Your Systems & AI
The Makinari platform is fully programmable. Connect your AI models directly through our MCP Server or build custom integrations with our REST API.
Model Context Protocol
MCP Server
The Model Context Protocol (MCP) server enables you to expose your tools and resources to AI models, facilitating seamless integration and context-aware interactions. Makinari's MCP server exposes over 30 tools covering messaging, lead management, content, campaigns, and reports.
import { MCPServer } from '@makinari/mcp';
// Start server or connect remotely
export default new MCPServer({
port: 3003
});
// Start server or connect remotely
export default new MCPServer({
port: 3003
});
Programmatic Access
REST API
The Makinari REST API allows you to programmatically interact with the platform's core features. Manage robots, finder, and site visitors effortlessly. All endpoints are secured and versioned.
// Example cURL request
curl -X GET \
"https://api.makinari.io/v1/robots" \
-H "Authorization: Bearer YOUR_API_KEY"
curl -X GET \
"https://api.makinari.io/v1/robots" \
-H "Authorization: Bearer YOUR_API_KEY"