AI Automation Platform

Connect AI to your data. Automate everything. Zero code.

Build AI agents that query your databases via MCP servers. Automate workflows with schedules, webhooks, and file triggers. Embed AI chat widgets on any website — all from a visual interface. Use our cloud or deploy on your own infrastructure.

19 LLM Models
SaaS or Self-Hosted
SOC 2 Ready
24/7 Workflows
orckai.app/workflows/daily-report
Daily Sales Report
Every day at 9:00 AM
MCP Tool
Query Sales Database
Code Step
Aggregate Metrics
Inline Prompt
Write Summary Report
Action
Email Team

From Zero to AI-Powered
in Three Steps

1

Connect

Point Orckai at your database or API. We auto-generate an MCP server that gives AI secure, permission-controlled access to your data.

PostgreSQL → MCP Server → Docker
2

Build

Create AI agents and workflows visually. Add triggers, conditions, inline prompts, code steps, and MCP tool calls. No programming required.

Schedule → Query → AI → Email
3

Deploy

Go live instantly on our cloud, or deploy to your own servers via Docker. Embed AI widgets on your website. Monitor every execution in real time.

SaaS cloud • Self-hosted • Your choice

Four Products.
One Platform.

Each product stands on its own. Together, they're an AI powerhouse.

Intelligent AI Agents

Create autonomous agents that reason, plan, and execute multi-step tasks. Choose from 19+ models across Claude and GPT. Standard mode for fast responses, Super mode for deep reasoning.

  • 19+ models: latest Claude and GPT, always up to date
  • Standard and Super execution modes (deep reasoning)
  • Real-time streaming responses with citations
  • Full conversation history with token usage tracking
Explore AI Agents
orckai.app/agents/support-bot
Customer Support Agent
Claude Sonnet • 3 tools attached
What's the refund policy for annual plans?
Based on our documentation, annual plans include a 30-day money-back guarantee. After 30 days, refunds are prorated based on remaining months.
[Source: refund-policy.pdf]
I've also created a support ticket (#4821) for the billing team to review your account.
Used: create_ticket via Freshdesk MCP

Connect Agents to Any Tool

Attach MCP servers, knowledge bases, web search, email, Jira, and more. Agents decide when and how to use tools — query databases, search documents, create tickets, send emails — all autonomously.

  • MCP servers: query databases, call APIs through AI
  • Built-in utilities: email, file ops, web search
  • Multi-tool chains: agents plan and execute step by step
  • Tool results visible in conversation with audit trail
Explore tools & integrations
orckai.app/agents/config
HR Platform
Running
Available Tools (6)
list_candidates
get_job
move_stage
add_note
create_candidate
list_stages

RAG-Powered Knowledge Base

Upload your documents and give AI perfect memory. 50+ file types supported — PDFs, Word, Excel, PowerPoint, Markdown, CSV, JSON, and more. Agents answer with inline citations from your documents.

  • 50+ file types: PDF, Word, Excel, PowerPoint, Markdown, CSV, JSON
  • Semantic vector search for accurate retrieval
  • Inline citations: [Source: filename.pdf]
  • Attach to agents and widgets with access controls
Explore knowledge base
orckai.app/knowledge-bases
HR Policies
12 documents • 847 chunks indexed
employee-handbook.pdf 2.4 MB
refund-policy.pdf 340 KB
onboarding-guide.docx 1.1 MB
benefits-summary.xlsx 520 KB
pto-policy.pdf 180 KB

Embeddable AI Widgets

Add an AI chat assistant to any website in 5 minutes with a single script tag. Connected to your knowledge base and MCP servers, it answers questions with citations. 70% ticket deflection, 24/7 availability.

  • One-line embed: just paste a script tag
  • Knowledge base with document citations
  • Connect MCP servers for live data access
  • Custom branding, themes, and welcome messages
Explore AI Widgets
yourwebsite.com
AI Assistant
Hi! Ask me anything about our products.
Do you ship internationally?
Yes! We ship to 40+ countries. Standard international shipping takes 7-14 business days. [Source: shipping-policy.pdf]
Type your question...

Enterprise-Grade Security

Authenticate widget users with JWT assertions from your backend. Domain whitelisting, per-widget rate limits, per-IP abuse prevention, and daily token budgets protect your deployment.

  • JWT assertion exchange (HS256 / RS256) for user identity
  • Domain whitelisting with wildcard support (*.example.com)
  • Per-widget + per-IP rate limiting via Redis
  • Daily token budgets to control AI spend
Explore security features
Widget Auth Flow
# 1. Your backend mints a JWT
# 2. Widget exchanges it for a session
POST /api/widget/auth/session
{ "widgetKey": "wk_...",
  "assertion": "eyJhbG..." }
// Session tokens returned
{ "accessToken": "eyJ...",
  "refreshToken": "a1b2c3...",
  "expiresIn": 3600 }

Visitor Tracking & Analytics

See who's chatting, what they're asking, and how your AI performs. Track conversations, monitor visitor geo-location, and review full chat transcripts from the admin panel.

  • Conversation viewer with full transcripts
  • Visitor tracking with IP geo-location
  • Usage statistics: messages, tokens, sessions
  • Lead capture: collect name, email, company
Explore analytics
orckai.app/widgets/analytics
Widget Analytics Live
1,247 conversations 892 unique visitors
48,320 tokens today 3 blocked (rate limit)
Top: US, UK, India, Germany 70% deflection rate

Visual Workflow Automation

Chain together AI agents, inline prompts, database queries, code execution, and actions into automated pipelines. Trigger on a schedule, via webhook, when a file is uploaded, or manually.

  • 7 step types: Agent, Inline Prompt, Code, MCP Tool, Action, Condition, Transform
  • 4 triggers: Cron schedules, webhooks, file drops, manual
  • Pass data between steps with {{variables}}
  • Retry, continue, or stop on errors per step
Explore AI Workflows
orckai.app/workflows
HR Resume Screening Running
Schedule
HR System
Screen
Score
Notify
Last run: 2 min ago 47 successful runs
Daily Sales Report Scheduled
9:00 AM
Query DB
Summarize
Email
Next run: Tomorrow 9:00 AM 120 successful runs

AI-Powered Code Steps

Need custom logic? Describe what you want in plain English and AI writes the JavaScript. Code runs in a secure sandbox at zero LLM cost per execution.

  • AI generates code from your plain English description
  • Secure V8 sandbox with fetch, JSON, Math, Date APIs
  • Access previous step outputs as input variables
  • Zero LLM cost at runtime — code runs deterministically
Explore code steps
orckai.app/workflows/step/code
Describe what this step should do:
"Filter candidates with 3+ years experience and score above 0.7, return qualified list with count"
// AI-generated code
const candidates = input.hr_system.candidates;
const qualified = candidates.filter(c =>
  c.experience >= 3 && c.score > 0.7
);
return {
  qualified,
  count: qualified.length
};

REST API for Everything

Build on top of Orckai with a full REST API. Manage agents, workflows, knowledge bases, templates, MCP servers, and chat programmatically. Scoped API keys with the oak_ prefix keep your integrations secure.

  • Full coverage: agents, workflows, KBs, templates, chat, MCP
  • 18 granular scopes like agents:read, workflows:execute
  • Rate limiting and audit logging
  • Full OpenAPI 3.0 spec with interactive docs
Explore developer API
Terminal
# List all agents
curl -H "X-API-Key: oak_sk_..." \
     https://orckai.app/api/v1/agents
// Response
{
  "success": true,
  "data": [
    { "id": "a1b2c3", "name": "Support Agent" },
    { "id": "d4e5f6", "name": "Sales Bot" }
  ],
  "count": 2
}
GET POST PUT DELETE

Database MCP Servers

Connect your database and Orckai auto-generates an MCP server with tools for every table. AI gets secure, permission-controlled access to query, insert, update, and delete data.

  • PostgreSQL, MySQL, SQL Server, Oracle, MariaDB
  • Live schema introspection — picks up tables and columns
  • Table-level and column-level permission control
  • Read-only or full CRUD per table
Explore MCP Generator
orckai.app/mcp-servers
HR Platform
Running
Available Tools (6)
list_candidates
get_job
move_stage
add_note
create_candidate
list_stages

REST API Wrapping

Turn any REST API into an MCP server. Enter your API spec or describe your endpoints, and Orckai generates a server that AI agents can call as tools.

  • Wrap any REST API endpoint as an MCP tool
  • Auto-generate from OpenAPI specs or descriptions
  • Authentication passthrough (API keys, OAuth)
  • Input/output schema validation
Explore API wrapping
MCP Server → REST API
# AI calls the MCP tool
tools/call "search_inventory"
{ "query": "laptop",
  "in_stock": true }
// MCP server calls your API
GET /api/inventory?q=laptop&stock=true
// Returns structured results to AI

One-Click Docker Deployment

Generated MCP servers deploy as Docker containers with automatic networking. They connect to the Orckai network so agents and workflows can reach them instantly.

  • Auto-build Docker image from generated code
  • Automatic network attachment for internal access
  • Health checks and container monitoring
  • Start, stop, redeploy from the UI
Explore Docker deploy
Docker Deployment
# Automatic deployment pipeline
Building hr-platform-mcp:latest
Step 1/4: FROM node:20-alpine
Step 2/4: COPY package*.json ./
Step 3/4: RUN npm install
Step 4/4: COPY . .
✔ Image built successfully
✔ Container started on port 3100
✔ Connected to orckai-network
✔ Health check: OK

Try It Right Now

See the chat icon in the bottom-right corner? That's a live Orckai widget running on this page. It's connected to our knowledge base and can answer questions about the platform.

1
Click the chat icon in the bottom-right
2
Ask anything about Orckai
3
See AI answer with citations from our docs

This exact widget took 5 minutes to set up: create an agent, attach a knowledge base, generate a widget key, paste one script tag.

Try it live

Built for Security-Conscious
Organizations

Encrypted & Isolated

Every organization's data is fully isolated. AES-256 encryption at rest, row-level security in PostgreSQL, JWT + API key authentication.

AES-256 Row-Level Security

Deploy Anywhere

Use our managed cloud at orckai.app or self-host on your own servers via Docker Compose — Linux, Windows, on-premise. Monitor with Prometheus and Grafana.

SaaS Cloud Self-Hosted

Compliance & Governance

RBAC with role-based permissions and resource-level access control. Full audit logging of every action with IP tracking. Your data is never shared or used for training.

RBAC Audit Logs

Simple, Transparent Pricing

Start free. Scale as you grow. No per-seat surprises.

Free Trial

Free7 days

Full platform access. No credit card required.

Starter

$999/mo

Small teams automating their first workflows.

Enterprise

Custom

Unlimited usage, on-premise, dedicated support.

Frequently Asked Questions

Orckai is a no-code AI automation platform that lets you build intelligent agents, generate MCP (Model Context Protocol) servers for databases and APIs, automate workflows with 7 step types and 4 trigger types, create RAG-powered knowledge bases with 50+ file types, and embed AI chat widgets on any website. Available as a managed SaaS or self-hosted on your own infrastructure, with full multi-tenant isolation, RBAC, and audit logging.

MCP (Model Context Protocol) servers allow AI models to securely access external data sources like databases and APIs. Orckai auto-generates MCP servers from your database connection (PostgreSQL, MySQL, SQL Server, Oracle, MariaDB) or API specs and deploys them as Docker containers. You set table-level and column-level permissions to control exactly what AI can read, write, or delete. Your agents and workflows then use these servers as tools.

Orckai supports 19+ models across Anthropic (Claude Opus, Sonnet, Haiku) and OpenAI (GPT series, o-series reasoning). We keep the model list up to date with the latest releases. Select different models per agent for cost optimization and bring your own API keys.

Yes. Orckai is available as a managed SaaS at orckai.app — just sign up and start building. If you prefer full control, you can also self-host on your own servers via Docker Compose. We support Linux, Windows, and on-premise deployments. Your data never leaves your servers with the self-hosted option.

No. Everything is visual — from creating agents to building workflows to deploying MCP servers. If you need custom logic, our Code Steps let you describe what you want in plain English and AI generates the JavaScript for you. The code runs in a secure V8 sandbox with built-in fetch, JSON, Math, and Date APIs. You can also use Inline Prompt steps to call any LLM directly within a workflow without creating an agent first.

Orckai charges a flat monthly fee based on your plan tier. You bring your own LLM API keys, so you only pay your actual LLM usage directly to providers (Anthropic, OpenAI, etc.). There are no per-execution fees or hidden charges. Enterprise customers get unlimited usage with on-premise deployment.

Absolutely. Orckai uses AES-256 encryption, row-level security in PostgreSQL, RBAC with role-based permissions, full audit logging with IP tracking, and JWT authentication with hashed API keys. MCP servers have table-level and column-level permission controls. On our managed SaaS, each organization's data is fully isolated. With self-hosted deployment, your data never leaves your servers. The platform is SOC 2 ready and GDPR compliant.

Yes. The Orckai Public API v1 provides REST endpoints covering agents, workflows, knowledge bases, prompt templates, MCP servers, chat, and organization management. Authenticate with scoped API keys (18 granular permissions like agents:read, workflows:execute), and supports rate limits. Create and manage your API keys in the dashboard under Settings → API Keys.

Start Building Your
AI Workforce

Deploy AI agents, automate workflows, and connect to your data in minutes. No credit card required.