PostgreSQL AI extension for vector search, embeddings, ML inference, RAG pipelines, MCP server, and agentic AI runtime. Runs in-process with SQL functions.
CREATE EXTENSION neurondb;One platform. SQL-first.
Vector, ML, and RAG primitives that run where your data lives.
Vector search
HNSW and IVF indexing with multiple distance metrics. Compatible with pgvector.
SELECT * FROM vector_search('embeddings', q, 10);ML inference
In-database inference and classical ML algorithms as SQL functions.
SELECT neurondb.ml.predict('model', features);RAG pipeline
Chunking, retrieval, reranking, and answer assembly as database steps.
SELECT neurondb.rag.query('docs', q, top_k => 5);PostgreSQL-native
Runs in-process as an extension. No sidecars required.
CREATE EXTENSION neurondb;Agent runtime
Tool execution and workflows via NeuronAgent for database AI apps.
pip install neuronagentMCP tools
Model Context Protocol server for tool access from Claude Desktop and other clients.
npx @neurondb/neuronmcpNeuronDB Console
Manage your database and workflows from a unified interface
-- Vector similarity search
SELECT id, similarity, text
FROM vector_search('embeddings',
'[0.12, -0.45, 0.78, ...]'::vector(384),
5
);| id | similarity | text |
|---|---|---|
| 1042 | 0.9134 | kubernetes helm chart with prometheus grafana jaeger observability stack… |
| 991 | 0.9011 | hnsw index build parameters and ef_search tuning for optimal performance… |
| 807 | 0.8876 | hugging face dataset loader inserts embeddings into vector(384) columns… |
| 523 | 0.8754 | background workers for async embedding generation and indexing tasks… |
| 389 | 0.8621 | GPU acceleration for batch vector operations with CUDA support enabled… |
NeuronDB PostgreSQL AI Ecosystem
Complete AI stack for PostgreSQL
NeuronDB
PostgreSQL extension for AI
- •Vector search with HNSW/IVF indexing
- •52+ ML algorithms in pure C
- •RAG pipeline with reranking
NeuronMCP
MCP server with 100+ tools
- •100+ MCP tools for database operations
- •Claude Desktop integration
- •Vector search and ML inference tools
NeuronAgent
Agent runtime for workflows
- •Multi-step workflow execution
- •Tool call orchestration
- •State management and persistence
NeuronDesktop
Desktop app for management
- •Visual query builder
- •Agent workflow monitoring
- •Real-time performance metrics
Inside NeuronDB
Engines, pipelines, and deployment tools
Vector engine
Index and search embeddings.
- •HNSW + IVF indexes
- •10+ distance metrics
- •GPU batch acceleration
- •pgvector compatible
ML engine
Inference and classical ML.
- •52+ algorithms
- •Model management
- •Feature store
- •Train in SQL
RAG pipeline
Retrieval + rerank.
- •Chunk + embed
- •Hybrid retrieval
- •Reranking
- •LLM integration
Background workers
Async tasks.
- •4 workers
- •Queue + scheduler
- •Metrics hooks
- •Async indexing
Kubernetes Helm
Cloud-native deployment.
- •StatefulSets
- •HPA + PDB
- •Prometheus + Grafana
- •Jaeger tracing
Hugging Face
Dataset loading.
- •Datasets API
- •sentence-transformers
- •Batch loading
- •Model caching
Use Cases
Powering AI applications with PostgreSQL
Semantic Search
Build semantic search engines with HNSW indexing and hybrid retrieval
RAG Applications
Create RAG pipelines with document processing, reranking, and LLM integration
Recommendation Systems
Build recommendation engines with collaborative filtering and ML algorithms
AI Agents
Deploy autonomous agents with long-term memory and tool execution via NeuronAgent
Claude Desktop Integration
Connect Claude Desktop to your database with 100+ MCP tools
Unified Management
Manage your entire NeuronDB ecosystem from a single dashboard
