A C# MCP server for interacting with LiteDB NoSQL databases through the Model Context Protocol.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"litedb-mcp": {
"args": [
"run",
"--project",
"/full/path/to/LitedbMcpServer/LitedbMcpServer.csproj",
"--no-build",
"--",
"--database-path",
"/full/path/to/database/file.db"
],
"command": "dotnet"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A C# MCP server for interacting with LiteDB NoSQL databases through the Model Context Protocol.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@modelcontextprotocol/inspector' 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.
MCP Inspector is Vulnerable to Potential Command Execution via XSS When Connecting to an Untrusted MCP Server
An XSS flaw exists in the MCP Inspector local development tool when it renders a redirect URL returned by a remote MCP server. If the Inspector connects to an untrusted server, a crafted redirect can inject script into the Inspector context and, via the built-in proxy, be leveraged to trigger arbitrary command execution on the developer machine. Version 0.16.6 hardens URL handling/validation and prevents script execution. > Thank you to the following researchers for their reports and contributi
MCP Inspector proxy server lacks authentication between the Inspector client and proxy
Versions of MCP Inspector below 0.14.1 are vulnerable to remote code execution due to lack of authentication between the Inspector client and proxy, allowing unauthenticated requests to launch MCP commands over stdio. Users should immediately upgrade to version 0.14.1 or later to address these vulnerabilities. Credit: Rémy Marot <bughunters@tenable.com>
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
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP Security Weekly
Get CVE alerts and security updates for Litedb Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A C# MCP server for interacting with LiteDB NoSQL databases through the Model Context Protocol.
LitedbMcpServer.csproj) is compatible with your environment by running:dotnet run --project /path/to/LitedbMcpServer/LitedbMcpServer.csproj
Clone this repository:
git clone https://github.com/vishwanath-uppala/litedb-mcp-server.git
cd litedb-mcp-server
For Amazon Q CLI users: Add the following to mcp.json:
{
"mcpServers": {
"litedb-mcp": {
"command": "dotnet",
"args": [
"run",
"--project",
"/full/path/to/LitedbMcpServer/LitedbMcpServer.csproj",
"--no-build",
"--",
"--database-path",
"/full/path/to/database/file.db"
]
}
}
}
The --database-path argument is required and must point to a valid file path where the LiteDB database will be stored.
After successful installation, the following tools will be available to MCP client applications.
| name | description |
|---|---|
| ListDatabases | Get the current database |
| ListCollections | List all collections in a database |
| FindDocuments | Find documents in a collection with optional filtering |
| GetDatabaseStats | Get statistics and information about a database |
| GetCollectionStats | Get detailed statistics and metadata for a specific collection |
| InsertDocument | Insert a document into a collection |
| DeleteDocuments | Delete documents from a collection |
ListDatabases
ListCollections
database (string, required): Database nameFindDocuments
database (string, required): Database namecollection (string, required): Collection namefilter (string, optional): BsonExpression filter (e.g., '$.age > 25')limit (integer, optional): Maximum number of documents to return (default: 100)skip (integer, optional): Number of documents to skip (default: 0)GetDatabaseStats
database (string, required): Database nameGetCollectionStats
database (string, required): Database namecollection (string, required): Collection nameInsertDocument