📦 Official SDK
PiPilot SDK for JavaScript & TypeScript
Type-safe database operations with automatic rate limiting and retry logic
npm install pipilot-sdkFull TypeScript Support
Complete type definitions included
Auto Rate Limiting
Intelligent retry with backoff
Type-Safe Operations
Catch errors at compile time
Simple to use, powerful at scale
Get started with just a few lines of code
// Fetch all records
const response = await fetch(
'https://pipilot.dev/api/v1/databases/YOUR_DB_ID/tables/YOUR_TABLE_ID/records',
{
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
const { records } = await response.json();
// Create a record
await fetch(
'https://pipilot.dev/api/v1/databases/YOUR_DB_ID/tables/YOUR_TABLE_ID/records',
{
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
data: {
name: 'John Doe',
email: 'john@example.com'
}
})
}
);🚀 Now Live
AI Assistant Integration
Connect your favorite AI assistants directly to your PiPilot database. Ask Claude, Cursor, or VS Code Copilot to query, update, and manage your data naturally.
Natural Language Queries
Ask your AI assistant: "Show me all users from California" or "Create a new order for customer #123"
Query data with plain English
Insert, update, and delete records
Create tables and manage schemas
MCP Server Ready
Our hosted MCP server handles authentication, rate limiting, and secure connections automatically.
Hosted at pipilot-mcp-server.vercel.app
Automatic API key management
Works with Claude, Cursor, VS Code, Windsurf
Everything you need to ship fast
From authentication to storage, we handle the infrastructure so you can focus on building your product
PostgreSQL Databases
Create 1 database per project with 500MB storage. Powered by Supabase's reliable infrastructure.
AI Schema Generation
Describe your data needs in plain English and let AI generate the perfect database schema instantly.
Visual Table Builder
Design tables with our intuitive UI. Support for 10+ data types including JSON, UUID, and timestamps.
API Keys System
Secure API keys for external apps. Built-in rate limiting (1000 req/hour) and usage tracking.
Auto-Generated REST APIs
Get instant CRUD endpoints for every table. Full documentation with code examples in 6+ frameworks.
File Storage (500MB)
Upload images, PDFs, videos up to 10MB each. Public & private files with signed URLs.
API Docs Generator
Framework-specific integration guides with your actual database IDs and API keys auto-filled.
Row Level Security
Built-in RLS policies ensure users only access their own data. Secure by default.
AI Assistant Integration
Connect Claude, Cursor, VS Code, and other AI assistants directly to your database via MCP server.
🎉 Completely Free
Start building today, no credit card required
Everything you need to build your application is included in our free tier.
Pro features coming soon for power users.