Your Database Pongo

Wrangtan

Wrangtan

A modern database client for developers.
AI-Powered. GPU-rendered. Built with Rust. Blazingly fast.

Named after the orangutan — agile, smart, and fast. GPU-accelerated, AI-powered, and built with Rust. Connect to 19+ databases and vector stores, automate with JavaScript — all in one blazingly fast native app.

macOS|Windows|Linux

Everything you need

Powerful features designed for the modern developer workflow.

GPU-Accelerated

Buttery smooth UI rendered entirely on the GPU. No Electron, no web views — just raw performance.

Built with Rust

Built with Rust

Memory-safe, blazingly fast, and reliable. Native performance without the overhead of garbage collection.

19+ Databases

Connect to PostgreSQL, MySQL, MongoDB, Redis, Snowflake, DynamoDB, and many more — all from one app.

AI-Powered Queries

Write queries in natural language. Powered by OpenAI, Gemini, Anthropic, or xAI — bring your own API key.

JavaScript Scripting

JavaScript Scripting

Automate workflows with built-in JavaScript scripting. Transform data, run migrations, and build pipelines.

Vector DB Support

Fetch indexes from Pinecone, Milvus, Weaviate, Qdrant, or pgvector and connect results directly into your relational database.

See it in action

A beautiful, native experience that feels right at home on every platform.

Query Editor

Write and execute queries with syntax highlighting, autocomplete, and inline results.

Table View

Browse, filter, sort, and edit your data in a spreadsheet-like interface.

AI Assistant

Ask questions in natural language and get instant SQL queries generated for your schema.

Connect to any database

19+ databases and 5 vector stores. One unified interface.

PostgreSQL

PostgreSQL

In Alpha

MySQL

MySQL

In Alpha

SQLite

SQLite

In Development

MongoDB

MongoDB

In Development

Redis

Redis

In Development

Oracle

In Development

SQL Server

SQL Server

In Development

MariaDB

MariaDB

In Development

Clickhouse

Clickhouse

In Development

Snowflake

Snowflake

In Development

DynamoDB

In Development

BigQuery

BigQuery

In Development

Elasticsearch

Elasticsearch

In Development

Cassandra

Cassandra

In Development

Databricks

Databricks

In Development

IBM Db2

IBM Db2

In Development

Azure SQL

Azure SQL

In Development

MS Access

MS Access

In Development

Neo4j

Neo4j

In Development

ScyllaDB

ScyllaDB

In Development

Vector Databases

pgvector

In Alpha

Pinecone

In Development

Milvus

Milvus

In Development

Weaviate

In Development

Qdrant

In Development

Query with AI

Describe what you need in plain English. Wrangtan generates the perfect query for your database — powered by the LLM provider of your choice.

AI Query Assistant
U
Show me all users who signed up this month and have made at least 3 purchases
AI
SELECT u.id, u.name, u.email, COUNT(p.id) AS purchase_count
FROM users u
JOIN purchases p ON u.id = p.user_id
WHERE u.created_at >= date_trunc('month', now())
GROUP BY u.id, u.name, u.email
HAVING COUNT(p.id) >= 3;

Bring your own API key from any supported provider

OpenAI

GPT-4o, GPT-4, o1

Google Gemini

Gemini 2.0, 1.5 Pro

Anthropic

Claude Opus, Sonnet

xAI

Grok

Script with JavaScript

Fetch indexes from a vector database, enrich with relational data, and write the results back — all with the built-in JavaScript engine. Bridge the gap between your AI/ML pipelines and your production database.

  • Vector-to-relational data pipelines
  • Cross-database queries & joins
  • Data transformations & migrations
  • Scheduled tasks & automation
script.js
// Fetch similar items from vector index
const vector = [0.1, 0.2, 0.3, 0.4]; // must match your collection dim

const result = await client.search({
  collection_name: "my_collection",
  anns_field: "embedding",
  vector,
  limit: 3,
});

// Enrich with relational data
const ids = result.results.map(r => r.id);

const postgres = client.postgres("postgres://user:pass@host:port/db");


const products = await postgres.query(
  "SELECT * FROM products WHERE id = ANY($1)",
  [ids]
);

// Render results based on vector search.
await postgres.insert("recommendations", products);
console.log(`Synced ${products.length} results`);

Ready to wrangle your data?

Join the waitlist and be the first to experience the fastest, most beautiful database client ever built.

macOS|Windows|Linux

Free during alpha. Coming soon to macOS, Windows, and Linux.