Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"arcticdb": {
"env": {
"ARCTICDB_URI": "lmdb:///path/to/your/database"
},
"args": [
"arcticdb-mcp"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
arcticdb-mcp turns ArcticDB into an AI data copilot. Assistants can automate symbol updates, batch jobs, and time-series queries while built-in versioning protects every change. Go from question to data change in minutes, not scripts, with full traceability. You can also design your own workflows on top of arcticdb-mcp.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'arcticdb-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked arcticdb-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data
Manage Supabase projects — databases, auth, storage, and edge functions
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
An official Qdrant Model Context Protocol (MCP) server implementation
MCP Security Weekly
Get CVE alerts and security updates for Arcticdb_mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for structured read/write access to ArcticDB.
Overview • Demo • Quick Start • Configuration • Tools • Development
arcticdb-mcp turns ArcticDB into an AI data copilot. Assistants can automate symbol updates, batch jobs, and time-series queries while built-in versioning protects every change. Go from question to data change in minutes, not scripts, with full traceability. You can also design your own workflows on top of arcticdb-mcp.
Watch the live watch db demo:
https://github.com/user-attachments/assets/dd81f229-e1f9-46e6-8e79-7c7252bc25c6
uvx (recommended):uvx arcticdb-mcp
{
"mcpServers": {
"arcticdb": {
"command": "uvx",
"args": ["arcticdb-mcp"],
"env": {
"ARCTICDB_URI": "lmdb:///path/to/your/database"
}
}
}
}
Choose one:
# Recommended
uvx arcticdb-mcp
# Or
pipx install arcticdb-mcp
# Or
pip install arcticdb-mcp
Python requirement: >=3.9
Set ARCTICDB_URI in MCP client config or environment.
lmdb:///path/to/dblmdb://C:/path/to/dbs3://s3.amazonaws.com:bucket?region=us-east-1&access=KEY&secret=SECRETazure://AccountName=X;AccountKey=Y;Container=Zs3://your-endpoint:bucket?access=KEY&secret=SECRETYou can also use a .env file:
ARCTICDB_URI=lmdb:///path/to/db
This is the default mode used by desktop MCP clients.
ARCTICDB_URI=lmdb:///path/to/db python -m arcticdb_mcp
Set ARCTICDB_MCP_PORT to run over HTTP/SSE:
ARCTICDB_URI=lmdb:///path/to/db ARCTICDB_MCP_PORT=8000 python -m arcticdb_mcp
Endpoint:
http://localhost:8000/sse
Current server exposes 48 tools.
| Tool | File | What it does |
|---|---|---|
get_uri | arcticdb_mcp/tools/arctic_tools.py | Return the ArcticDB URI used by this MCP server connection. |
describe | arcticdb_mcp/tools/arctic_tools.py | Return a compact summary of the ArcticDB store. |
modify_library_option | arcticdb_mcp/tools/arctic_tools.py | Modify a configurable library option. |
list_libraries | arcticdb_mcp/tools/library_tools.py | List all libraries in the Arctic instance. |
create_library | arcticdb_mcp/tools/library_tools.py | Create a new library |