Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-betterdb-inc-monitor": {
"args": [
"-y",
"betterdb"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
BetterDB MCP server - Valkey observability for Claude Code and other MCP clients
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'betterdb' 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 betterdb against OSV.dev.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe 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 / analytics
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Server for GCP environment for interacting with various Observability APIs.
🔥 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.
MCP Security Weekly
Get CVE alerts and security updates for Monitor 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 monorepo application for monitoring Valkey/Redis databases with a NestJS backend and React frontend.
BetterDB is built by BetterDB Inc., a public benefit company operating under the OCV Open Charter.
betterdb-monitor/
├── apps/
│ ├── api/ # NestJS backend (Fastify)
│ └── web/ # React frontend (Vite)
├── packages/
│ ├── cli/ # CLI package (npx betterdb)
│ └── shared/ # Shared TypeScript types
├── docker-compose.yml # Local Valkey (port 6380) and Redis (port 6382) for testing
└── package.json # Workspace root
pnpm install
cp .env.example .env
pnpm docker:up
To connect to Redis instead of Valkey, update .env:
DB_PORT=6382
pnpm dev
The application will be available at:
Run only the API:
pnpm dev:api
Run only the web frontend:
pnpm dev:web
Stop Docker containers:
pnpm docker:down
Build for production:
pnpm build
The easiest way to run BetterDB Monitor without Docker:
npx @betterdb/monitor
On first run, an interactive setup wizard will guide you through configuration:
Configuration is saved to ~/.betterdb/config.json.
npm install -g @betterdb/monitor
betterdb
betterdb --setup # Re-run setup wizard, then start server
betterdb --port 8080 # Override server port
betterdb --db-host 1.2.3.4 # Override database host
betterdb --help # Show all options
To use SQLite storage with the CLI, install better-sqlite3:
npm install -g better-sqlite3
pnpm docker:build
For multi-arch builds (AMD64 + ARM64), first set up buildx:
docker buildx create --name mybuilder --use --bootstrap
Then build:
pnpm docker:build:multiarch
The Docker image contains only the monitoring application (backend + frontend). It requires:
docker run -d \
--name betterdb-monitor \
-p 3001:3001 \
-e DB_HOST=your-valkey-host \
-e DB_PORT=6379 \
-e DB_PASSWORD=your-password \
-e STORAGE_TYPE=memory \
betterdb/monitor
You can run the application on any port by setting the PORT environment variable with -e PORT=<port>:
docker run -d \
--name betterdb-monitor \
-p 8080:8080 \
-e PORT=8080 \
-e DB_HOST=your-valkey-host \
-e DB_PORT=6379 \
-e DB_PASSWORD=your-password \
-e STORAGE_TYPE=memory \
... [View full README on GitHub](https://github.com/BetterDB-inc/monitor#readme)