Skip to content
ai-supply.store
DiscoverCategoriesLeaderboardsCommunityAgent APIFAQ
Sign inSign up free
catalog / Data & ETL / LanceDB
⇄ConnectorData & ETLFree

LanceDB

Serverless, embedded vector database built on Lance columnar format — zero-copy, multimodal, no server needed.

@ai-supply
Installs105k
⟳ upstream v0.32.0-beta.3 · updated 3d ago
↗ Source repository
← More Data & ETLData & ETL leaderboard →How we grade security →Source ↗
! Grade B · 75/100 · ReviewSecurity assessment
✓No compromise signals30capabilities surfaced1known CVE9of 20 OWASP controls clear
Suspicious network referencesSuspicious network referencesBroad capability surfaceSuspicious code patterns
scanned 1d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

LanceDB

LanceDB is an open-source, serverless vector database built on Lance — a columnar data format optimized for ML workloads. It runs embedded in your application (like SQLite) or as a hosted service, requiring no separate server process. The Lance format enables zero-copy access, fast random reads, and efficient updates — making it ideal for RAG, semantic search, and multimodal AI applications.

Key Features

  • Serverless/embedded: no separate server; runs in-process or on S3/GCS/Azure
  • Multimodal: store and search vectors alongside text, images, video, audio in one table
  • Lance columnar format: 100× faster random access than Parquet for ML patterns
  • Full-text search (Tantivy-based) + hybrid search
  • Versioning: automatic dataset versioning with time-travel queries
  • Python, JavaScript/TypeScript, and Rust APIs

Quick Start

import lancedb
import numpy as np

db = lancedb.connect("./lancedb")

table = db.create_table("embeddings", data=[
    {"vector": np.random.rand(384).tolist(), "text": "hello world"},
])

results = table.search(np.random.rand(384).tolist()).limit(5).to_pandas()

Install via ai-supply

npx ai-supply add lancedb-multimodal-vector-store

Curated mirror of the open-source LanceDB (Apache-2.0). Get it from the source.

Rating rank
#1
of 24 in Data & ETL
Install rank
#13
of 24 in Data & ETL
Security score
75/100 · B
review
Security rank
#12
of 24 in Data & ETL
Installs
105k
cat avg 164k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Data & ETL leaderboard →
! Security: Review · 7575/100 · grade Bscanned 1d ago
✓ no compromise signals31 risk-surface · 6/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

What this capability can do · high confidence (static)
Tools (1)
LanceDB
⚑ filesystem⚑ shell⚑ network⚑ secrets
egress → discord.com, docs.lancedb.com, www.conventionalcommits.org, pypi.fury.io, matklad.github.io, www.apache.org, docs.github.com, registry.npmjs.org +32
auth: api_keydiscord.comdocs.lancedb.comwww.conventionalcommits.orgpypi.fury.iogithub.commatklad.github.iowww.apache.orgraw.githubusercontent.comscope: 7.2.2

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM03Supply Chaincritical
Vulnerable/compromised dependencies, models or archives in the artifact.
•Dependency manifest — 4 npm dependencies declared · lancedb-lancedb-bf15655/docs/package.jsonrisk surface
•Non-registry dependency source — 2 dependency/ies pulled from git/URL/file · lancedb-lancedb-bf15655/docs/package.json (CWE-829)risk surface
•Dependency manifest — 9 pip requirements declared · lancedb-lancedb-bf15655/docs/requirements.txtrisk surface
•Dependency manifest — 10 npm dependencies declared · lancedb-lancedb-bf15655/nodejs/examples/package.jsonrisk surface
•Non-registry dependency source — 1 dependency/ies pulled from git/URL/file · lancedb-lancedb-bf15655/nodejs/examples/package.json (CWE-829)risk surface
•Dependency manifest — 26 npm dependencies declared · lancedb-lancedb-bf15655/nodejs/package.jsonrisk surface
•Vulnerable dependencies — 180 known vulnerabilities in: backoff@0.4.0, cmov@0.5.3, fast-float@0.2.0, instant@0.1.13, memmap2@0.7.1, memmap2@0.9.10, number_prefix@0.4.0, paste@1.0.15 (CWE-1395)known CVE · -25 pts
⚠LLM05Improper Output Handlinghigh
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — pipe-to-shell install · lancedb-lancedb-bf15655/.github/workflows/license-header-check.yml (CWE-494)risk surface
•Suspicious code patterns — OS command execution · lancedb-lancedb-bf15655/ci/check_lance_release.py (CWE-78)risk surface
•Suspicious code patterns — destructive rm -rf /; pipe-to-shell install · lancedb-lancedb-bf15655/dockerfiles/Dockerfile (CWE-78)risk surface
•Suspicious code patterns — child_process exec · lancedb-lancedb-bf15655/nodejs/__test__/rerankers.test.ts (CWE-78)risk surface
•Suspicious code patterns — dynamic code execution · lancedb-lancedb-bf15655/nodejs/lancedb/embedding/transformers.ts (CWE-95)risk surface
•Suspicious code patterns — environment/secret exfiltration · lancedb-lancedb-bf15655/python/benchmarks/bench_streaming_dataloader.py (CWE-200)risk surface
•Suspicious code patterns — pickle deserialization · lancedb-lancedb-bf15655/python/python/tests/test_embeddings.py (CWE-502)risk surface
⚠LLM06Excessive Agencyhigh
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 1 distinct host(s) · lancedb-lancedb-bf15655/.github/ISSUE_TEMPLATE/config.ymlexpected
•External endpoints declared — 2 distinct host(s) · lancedb-lancedb-bf15655/.github/workflows/build_linux_wheel/action.ymlexpected
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · lancedb-lancedb-bf15655/.github/workflows/codex-fix-ci.yml (CWE-272)risk surface
•Egress to a private/loopback host — 0.0.0.0 · lancedb-lancedb-bf15655/.github/workflows/nodejs.yml (CWE-918)expected
•External endpoints declared — 15 distinct host(s) · lancedb-lancedb-bf15655/README.mdexpected
•External endpoints declared — 4 distinct host(s) · lancedb-lancedb-bf15655/RUST_THIRD_PARTY_LICENSES.htmlexpected
•External endpoints declared — 3 distinct host(s) · lancedb-lancedb-bf15655/ci/sysroot-aarch64-pc-windows-msvc.shexpected
•External endpoints declared — 9 distinct host(s) · lancedb-lancedb-bf15655/docs/mkdocs.ymlexpected
•External endpoints declared — 5 distinct host(s) · lancedb-lancedb-bf15655/docs/src/embeddings/available_embedding_models/multimodal_embedding_functions/voyageai_multimodal_embedding.mdexpected
•External endpoints declared — 6 distinct host(s) · lancedb-lancedb-bf15655/java/pom.xmlexpected
•Broad capability surface — 4 high-impact capability categories referenced — verify least-privilege · lancedb-lancedb-bf15655/nodejs/NODEJS_THIRD_PARTY_LICENSES.md (CWE-272)risk surface
•Egress to a private/loopback host — 127.0.0.1 · lancedb-lancedb-bf15655/nodejs/__test__/s3_integration.test.ts (CWE-918)expected
•External endpoints declared — 8 distinct host(s) · lancedb-lancedb-bf15655/nodejs/package-lock.jsonexpected
•External endpoints declared — 47 distinct host(s) · lancedb-lancedb-bf15655/python/PYTHON_THIRD_PARTY_LICENSES.mdexpected
•Egress to a private/loopback host — 169.254.169.254 · lancedb-lancedb-bf15655/rust/lancedb/src/remote/oauth.rs (CWE-918)expected
⚠LLM10Unbounded Consumptionmedium
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
•Potentially unbounded loop — an infinite loop (while True / while(1) / for(;;)) may cause runaway consumption · lancedb-lancedb-bf15655/python/python/lancedb/db.py (CWE-835)risk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
✓LLM01Prompt InjectionPassed
✓LLM02Sensitive Information DisclosurePassed
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM07System Prompt LeakagePassed
✓LLM08Vector and Embedding WeaknessesPassed
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
OWASP Machine Learning Security Top 10
⚠ML06AI Supply Chaincritical
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Dependency manifest — 4 npm dependencies declared · lancedb-lancedb-bf15655/docs/package.jsonrisk surface
•Non-registry dependency source — 2 dependency/ies pulled from git/URL/file · lancedb-lancedb-bf15655/docs/package.json (CWE-829)risk surface
•Dependency manifest — 9 pip requirements declared · lancedb-lancedb-bf15655/docs/requirements.txtrisk surface
•Dependency manifest — 10 npm dependencies declared · lancedb-lancedb-bf15655/nodejs/examples/package.jsonrisk surface
•Non-registry dependency source — 1 dependency/ies pulled from git/URL/file · lancedb-lancedb-bf15655/nodejs/examples/package.json (CWE-829)risk surface
•Dependency manifest — 26 npm dependencies declared · lancedb-lancedb-bf15655/nodejs/package.jsonrisk surface
•Vulnerable dependencies — 180 known vulnerabilities in: backoff@0.4.0, cmov@0.5.3, fast-float@0.2.0, instant@0.1.13, memmap2@0.7.1, memmap2@0.9.10, number_prefix@0.4.0, paste@1.0.15 (CWE-1395)known CVE · -25 pts
⚠ML09Output Integrityhigh
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — pipe-to-shell install · lancedb-lancedb-bf15655/.github/workflows/license-header-check.yml (CWE-494)risk surface
•Suspicious code patterns — OS command execution · lancedb-lancedb-bf15655/ci/check_lance_release.py (CWE-78)risk surface
•Suspicious code patterns — destructive rm -rf /; pipe-to-shell install · lancedb-lancedb-bf15655/dockerfiles/Dockerfile (CWE-78)risk surface
•Suspicious code patterns — child_process exec · lancedb-lancedb-bf15655/nodejs/__test__/rerankers.test.ts (CWE-78)risk surface
•Suspicious code patterns — dynamic code execution · lancedb-lancedb-bf15655/nodejs/lancedb/embedding/transformers.ts (CWE-95)risk surface
•Suspicious code patterns — environment/secret exfiltration · lancedb-lancedb-bf15655/python/benchmarks/bench_streaming_dataloader.py (CWE-200)risk surface
•Suspicious code patterns — pickle deserialization · lancedb-lancedb-bf15655/python/python/tests/test_embeddings.py (CWE-502)risk surface
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML02Data PoisoningPassed
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (14) · hygiene / uncategorized
•Unrecognized file type — '.?' is not on the allowlist · lancedb-lancedb-bf15655/.agents/skills/lancedbrisk surface
•Suspicious network references — suspicious TLD (6 URLs) · lancedb-lancedb-bf15655/.github/workflows/build_linux_wheel/action.ymlrisk surface
•Suspicious network references — suspicious TLD (3 URLs) · lancedb-lancedb-bf15655/.github/workflows/build_windows_wheel/action.ymlrisk surface
•Suspicious network references — raw IP URL (1 URLs) · lancedb-lancedb-bf15655/.github/workflows/nodejs.ymlrisk surface
•Unrecognized file type — '.gitignore' is not on the allowlist · lancedb-lancedb-bf15655/.gitignorerisk surface
•Unrecognized file type — '.hbs' is not on the allowlist · lancedb-lancedb-bf15655/about.hbsrisk surface
•Unrecognized file type — '.properties' is not on the allowlist · lancedb-lancedb-bf15655/java/.mvn/wrapper/maven-wrapper.propertiesrisk surface
•Suspicious network references — suspicious TLD (2 URLs) · lancedb-lancedb-bf15655/java/.mvn/wrapper/maven-wrapper.propertiesrisk surface
•Unrecognized file type — '.npmignore' is not on the allowlist · lancedb-lancedb-bf15655/nodejs/.npmignorerisk surface
•Suspicious network references — raw IP URL (2 URLs) · lancedb-lancedb-bf15655/nodejs/__test__/s3_integration.test.tsrisk surface
•Unrecognized file type — '.cjs' is not on the allowlist · lancedb-lancedb-bf15655/nodejs/examples/jest.config.cjsrisk surface
•Unrecognized file type — '.pyi' is not on the allowlist · lancedb-lancedb-bf15655/python/python/lancedb/_lancedb.pyirisk surface
•Suspicious network references — raw IP URL (4 URLs) · lancedb-lancedb-bf15655/rust/lancedb/src/remote/db.rsrisk surface
•Suspicious network references — raw IP URL (12 URLs) · lancedb-lancedb-bf15655/rust/lancedb/src/remote/oauth.rsrisk surface
✔ verified source · pinned lancedb-lancedb-bf15655 · changed since last scan (-13 pts)
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/lancedb-multimodal-vector-store/check). Click a policy:

Consume LanceDB programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/lancedb-multimodal-vector-store

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/lancedb-multimodal-vector-store/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add lancedb-multimodal-vector-store

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/lancedb-multimodal-vector-store/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "lancedb-multimodal-vector-store" })
OpenAPI spec →
vlatest
! Security: Review · 751mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

Free, security-vetted AI capabilities — skills, MCPs, plugins, agents, datasets and more, each graded and freshness-tracked, and built for humans and agents alike.

api · v3.1status · all green
Contact
support@ai-supply.storesecurity@ai-supply.store
Catalog
  • Discover
  • Categories
  • Leaderboards
  • Benchmarks
  • Security
  • Scan a repo
Community
  • Community
  • FAQ
For agents
  • Quickstart (60s)
  • Authorize an agent
  • Agent API
  • OpenAPI spec
For builders
  • Publish
  • Dashboard
Account
  • Create account
  • Sign in
  • Settings
Legal
  • Terms
  • Publisher Agreement
  • Acceptable Use
  • Privacy