Enterprise AI Integration Platform

Connect your business systems to AI. Deploy agents, workflows, and widgets.

Orckai connects your apps, documents, databases, APIs, and internal knowledge to secure AI experiences your teams and customers can actually use. Build agents, automate workflows, and embed AI anywhere without moving business context out of your control.

Business Context
Agents, Workflows, Widgets
Governed Access
SaaS or Self-Hosted
orckai.app/data/sales-operations
Business Context Hub
Governed access
System Connection
Query Sales Database
Workflow
Validate and Transform
AI Agent
Answer with Business Context
Experience
Agent, Widget, or API

From Business Context to Production AI

1

Connect Systems and Knowledge

Bring together apps, databases, APIs, files, knowledge bases, and business systems with governed access controls.

Databases + APIs + files
2

Create AI Experiences

Turn that context into agents, workflows, widgets, and APIs that answer questions, automate processes, and support customers.

Agents + workflows + widgets
3

Operate Securely

Run on Orckai Cloud or self-host close to your data. Govern access, audit activity, and monitor every AI interaction.

SaaS + self-hosted + audit trails

Solutions Built Around Real Business Moments

Orckai starts where teams already feel pain: converting website visitors, helping logged-in customers, briefing account teams, and automating operational work.

Your Business Context, Deployed as AI

Orckai connects business systems and company knowledge to the AI experiences your teams and customers actually use.

AI Agents That Understand Your Business

Create assistants that can answer with approved company context, use governed tools, and take action through connected business systems.

  • 19+ models across Claude and GPT families
  • Standard and Super execution modes for different task depth
  • 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 connected helpdesk

Connect Agents to Business Systems

Attach system connections, knowledge bases, web search, email, Jira, and internal APIs. Agents can query approved sources, search documents, create tickets, and send updates through governed tools.

  • Governed connectors for databases, APIs, and internal systems
  • 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

Knowledge Grounded in Your Content

Upload documents and make approved content available to agents and widgets. 50+ file types are supported, including PDFs, Word, Excel, PowerPoint, Markdown, CSV, and JSON.

  • 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 Experiences

Add AI to websites, portals, and internal apps with a single script tag. Widgets answer from approved content, use connected data when allowed, and keep conversations visible to your team.

  • One-line embed: just paste a script tag
  • Knowledge base with document citations
  • Connect approved data sources for live answers
  • 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 Connected support context

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, Data 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 Platform Operations

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

  • Full coverage: agents, workflows, KBs, templates, chat, and system connections
  • 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

Governed System Connections

Connect your databases and choose exactly what AI can access. Orckai turns approved tables, fields, and actions into governed tools for agents, workflows, widgets, and APIs.

  • 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 System Connections
orckai.app/data-connections
HR Platform
Running
Available Tools (6)
list_candidates
get_job
move_stage
add_note
create_candidate
list_stages

API-Backed AI Actions

Connect internal and third-party APIs so AI experiences can look up records, trigger actions, and return structured results through governed interfaces.

  • Expose approved REST API endpoints as AI tools
  • Auto-generate from OpenAPI specs or descriptions
  • Authentication passthrough (API keys, OAuth)
  • Input/output schema validation
Explore API connections
AI Tool -> REST API
# AI calls an approved tool
tools/call "search_inventory"
{ "query": "laptop",
  "in_stock": true }
// Orckai calls your API
GET /api/inventory?q=laptop&stock=true
// Returns structured results to AI

Deploy Close to Your Data

Run generated data connectors as managed services or Docker containers with automatic networking, monitoring, and redeploy controls.

  • 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 deployment options
Docker Deployment
# Automatic deployment pipeline
Building hr-data-connector: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

Pilot First, Then Scale

Start with one governed AI use case, then expand across teams, systems, and deployment models.

Free Trial

Free7 days

Full platform access. No credit card required.

Starter

$999/mo

A first governed AI pilot for one team or use case.

Enterprise

Custom

Company-wide rollout, self-hosting, SSO, and dedicated support.

Frequently Asked Questions

Orckai gives companies a secure way to connect business systems, company knowledge, and workflows to AI. Connect apps, documents, databases, APIs, knowledge bases, and internal tools, then deploy that intelligence through SaaS or your own infrastructure with RBAC, audit logging, and tenant isolation.

Orckai connects to apps, databases, APIs, files, knowledge bases, and internal tools through governed connections. You decide which tables, fields, documents, and actions are available, and Orckai makes them usable by agents, workflows, widgets, and APIs with audit visibility.

Orckai supports 19+ models across Anthropic and OpenAI. Select different models per agent or workflow for cost, speed, and quality optimization, and bring your own provider 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 code is required for core setup. Teams can connect data, create agents, build workflows, and launch widgets visually. For advanced logic, Code Steps let technical users add deterministic JavaScript in a sandbox, and the REST API supports deeper platform integrations.

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.

Orckai uses AES-256 encryption, row-level security in PostgreSQL, RBAC with role-based permissions, audit logging with IP tracking, and JWT authentication with hashed API keys. System connections support table-level and column-level permissions. On managed SaaS, each organization's data is isolated. With self-hosted deployment, your data stays in your infrastructure.

Yes. The Orckai Public API v1 provides REST endpoints covering agents, workflows, knowledge bases, prompt templates, system connections, chat, and organization management. Authenticate with scoped API keys and granular permissions such as agents:read and workflows:execute.

Turn Business Context
Into AI Experiences

Connect business systems and company knowledge, launch governed agents and workflows, and embed AI where your teams and customers work.