{
"mcpServers": {
"mcp-server-ladybug": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server implementation that interacts with LadybugDB graph databases, providing Cypher query capabilities to AI Assistants and IDEs.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 89 days ago. 10 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Ladybug 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 implementation that interacts with LadybugDB graph databases, providing Cypher query capabilities to AI Assistants and IDEs.
LadybugDB is an embedded graph database built for query speed and scalability. It is optimized for handling complex join-heavy analytical workloads on very large graphs.
Key features:
The server provides one prompt:
ladybugdb-initial-prompt: A prompt to initialize a connection to LadybugDB and start working with itThe server offers one tool:
query: Execute a Cypher query on the LadybugDB database
query (string, required): The Cypher query to executeAll interactions with LadybugDB are done through writing Cypher queries.
Result Limiting: Query results are automatically limited to prevent using up too much context:
--max-rows)--max-chars)pip install mcp-server-ladybug
mcp-server-ladybug --db-path :memory:
Note: Replace
:memory:with a path like/path/to/local.lbdbto persist data to disk.
docker run -it --rm ghcr.io/ladybugdb/mcp-server-ladybug:latest --db-path :memory:
Note: Replace
:memory:with a path like/path/to/local.lbdbto persist data to disk.
uvx mcp-server-ladybug --db-path :memory:
Note: Replace
:memory:with a path like/path/to/local.lbdbto persist data to disk.
git clone https://github.com/LadybugDB/mcp-server-ladybug.git
cd mcp-server-ladybug
uv pip install -e .
mcp-server-ladybug --db-path :memory:
Note: Replace
:memory:with a path like/path/to/local.lbdbto persist data to disk.
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| --transport | Choice | stdio | Transport type. Options: stdio, sse, stream |
| --port | Integer | 8000 | Port to listen on for sse and stream transport mode |
| --host | String | 127.0.0.1 | Host to bind the MCP server for sse and stream transport mode |
| --db-path | String | :memory: | Path to LadybugDB database file |
| --max-rows | Integer | 1024 | Maximum number of rows to return from queries |
| --max-chars | Integer | 50000 | Maximum number of characters in query results |
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-server-ladybug": {
"command": "uvx",
"args": [
"mcp-server-ladybug",
"--db-path",
":memory:"
]
}
}
}
Note: Replace
:memory:with a path like/path/to/local.lbdbto persist data to disk.
CREATE NODE TABLE Person (id INT64 PRIMARY KEY, name STRING, age INT64);
CREATE NODE TABLE City (name STRING PRIMARY KEY, population INT64);
CREATE REL TABLE Follows (FROM Person TO Person, since INT64);
CREATE REL TABLE LivesIn (FROM Person TO City);
COPY Person FROM 'persons.csv';
COPY City FROM 'cities.csv';
COPY Follows FROM 'follows.csv';
MATCH (a:Person)-[:Follows]->(b:Person)
WHERE a
... [View full README on GitHub](https://github.com/LadybugDB/mcp-server-ladybug#readme)