← Back to Runik AI
Runik AI — Claude Connector
Your business system inside Claude
What is Runik?
Runik AI is a chat-first business management platform. You describe your business in natural language, and Runik builds your system — tables, relationships, views, and sample data — in under 5 minutes. No code, no configuration.
How it works with Claude
Runik connects to Claude as a remote MCP connector. Once connected, you can:
Query your data: "Show me all pending orders" → Claude reads your actual business data
Create records: "Add a new client: Acme Corp" → record created in your system
Analyze: "What's my pipeline value this month?" → real numbers from your database
Cross-reference: "Which clients have overdue tasks?" → joins multiple tables automatically
Everything happens through natural language. Claude calls Runik's MCP tools behind the scenes.
Setup
Describe your business — Runik creates your system automatically
In Claude: Settings → Connectors → Add → Name: Runik → paste the URL below:
https://runikapp.com/mcp
Copy
Click Authorize on the Runik login page — if you're already logged in, it's one click
Ask Claude about your business — done!
Example conversation
You: How many active clients do I have?
[Claude calls clients_list]
Claude: You have 3 active clients: Acme Industries, TechStart LLC, and Smith & Partners.
You: Create an order for Acme, $599.98, confirmed
[Claude calls orders_create]
Claude: Order #6 created for Acme Industries — $599.98, status: Confirmed.
You: Show me high priority tasks due this week
[Claude calls tasks_list with filters]
Claude: 2 high-priority tasks this week:
1. Onboard Acme Industries (Sarah, May 15) — In Progress
2. Security audit (Dev Team, May 16) — To Do
What makes Runik different
Dynamic tools: Your tables become MCP tools automatically. A "clients" table generates clients_list, clients_get, clients_create, clients_update, clients_delete
Multi-tenant: Each user sees only their own company data. OAuth 2.1 + PKCE ensures complete isolation
Real data: Claude queries your actual database — not just metadata or samples
Works everywhere: Same MCP server works with Claude, and soon ChatGPT, Copilot, and any MCP-compatible AI
WhatsApp built-in: Ask about your business from your phone via WhatsApp
Open source: AGPL-3.0 licensed. Self-host if you want full control over your data
Security
OAuth 2.1 + PKCE
Tokens hashed SHA-256
HSTS + CSP headers
Scope enforcement
Data isolation per company
Read-only by default
Technical details
Feature Implementation
Protocol MCP 2025-03-26
Transport Streamable HTTP (JSON + SSE)
Authentication OAuth 2.1 + PKCE + Dynamic Client Registration (RFC 7591)
Discovery RFC 8414 + RFC 9728
Tools Dynamic per-company (CRUD + schema + views + automations)
Annotations readOnlyHint, destructiveHint, title per tool
Database SQLite per company (physically isolated files)
Rate limiting Per-IP on OAuth endpoints, per-user on queries
Links