BetterDB MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_instancesA | List all Valkey/Redis instances registered in BetterDB. Shows connection status and capabilities. |
| select_instanceC | Select which instance subsequent tool calls operate on. |
| add_connectionB | Add a new Valkey/Redis connection to BetterDB. Optionally set it as the active default. |
| test_connectionA | Test a Valkey/Redis connection without persisting it. Use before add_connection to validate credentials. |
| remove_connectionC | Remove a connection from BetterDB. |
| set_default_connectionC | Set a connection as the active default for BetterDB. |
| get_infoA | Get INFO stats for the active instance. Contains all health data: memory, clients, replication, keyspace, stats (hit rate, ops/sec), and server info. Optionally filter to a section: server|clients|memory|stats|replication|keyspace. |
| get_slowlogB | Get the most recent slow commands from the slowlog. |
| get_commandlogA | Get the most recent entries from COMMANDLOG (Valkey 8+ only, superset of slowlog). |
| get_latencyB | Get latency event history for the active instance. |
| get_memoryB | Get memory diagnostics: MEMORY DOCTOR assessment and MEMORY STATS breakdown. |
| get_clientsC | Get the active client list with connection details. |
| get_healthA | Get a synthetic health summary for the active instance: keyspace hit rate, memory fragmentation ratio, connected clients, replication lag (replicas only), and keyspace size. Use this as the first call when investigating an instance — it surfaces the most actionable signals without requiring you to parse raw INFO output. |
| get_slowlog_patternsA | Get analyzed slowlog patterns from persisted storage. Groups slow commands by normalized pattern, showing frequency, average duration, and example commands. Survives slowlog buffer rotation — data goes back as far as BetterDB has been running. |
| get_commandlog_historyA | Get persisted COMMANDLOG entries from storage (Valkey 8+ only). Supports time range filtering to investigate specific incidents. Returns empty with a note if COMMANDLOG is not supported on this instance. |
| get_commandlog_patternsA | Get analyzed COMMANDLOG patterns from persisted storage (Valkey 8+ only). Like get_slowlog_patterns but includes large-request and large-reply patterns in addition to slow commands. |
| get_anomaliesA | Get anomaly detection events from persisted storage. BetterDB continuously runs Z-score analysis on memory, hit rate, CPU, and other metrics — this returns the detected anomalies. Use to investigate what triggered an alert or correlate with an incident. |
| get_client_activityA | Get time-bucketed client activity from persisted snapshots. Shows connection counts, command distribution, and buffer usage over time. Use startTime/endTime to focus on a specific incident window. |
| get_hot_keysA | Get hot key tracking data from persisted storage. BetterDB periodically scans keys using LFU frequency scores (when maxmemory-policy is an LFU variant) or OBJECT IDLETIME / COMMANDLOG-derived frequency. Each snapshot captures the top keys ranked by access frequency. Use this to find cache-busting keys, uneven access patterns, or keys that dominate throughput. The signalType field in each entry indicates which detection mode was active (lfu or idletime). |
| get_cluster_nodesA | Discover all nodes in the Valkey cluster — role (master/replica), address, health status, and slot ranges. Returns an error message if this instance is not running in cluster mode. |
| get_cluster_node_statsA | Get per-node performance stats: memory usage, ops/sec, connected clients, replication offset, and CPU. Use this to identify hot nodes, lagging replicas, or uneven load distribution. |
| get_cluster_slowlogA | Get the aggregated slowlog across ALL nodes in the cluster. This is the primary tool for finding slow commands in cluster mode — per-node slowlogs are incomplete. Returns an error message if not in cluster mode. |
| get_slot_statsA | Get per-slot key counts and CPU usage (Valkey 8.0+ only). Use orderBy='cpu-usec' to find hot slots, or 'key-count' to find the most populated slots. Returns an error message if not supported. |
| get_latency_historyA | Get the full latency history for a named event (e.g. 'command', 'fast-command'). Call get_latency first to see which event names are available, then use this to investigate a specific event's trend over time. |
| get_acl_auditA | Get persisted ACL audit log entries from storage. Filter by username, reason (auth, command, key, channel), or time range. Use this to investigate why a connection is failing or audit access patterns. |
| start_monitorA | Start the BetterDB monitor as a persistent background process. If already running, returns the existing URL. The monitor persists across MCP sessions and must be stopped explicitly with stop_monitor. |
| cache_listA | List all caches (semantic_cache and agent_cache) registered for the active instance, with hit rate and total ops. |
| cache_healthA | Detailed health for a single cache. Response branches by type: semantic_cache reports category_breakdown + uncertain_hit_rate; agent_cache reports tool_breakdown. |
| cache_threshold_recommendationA | Threshold-tuning recommendation for a semantic_cache, based on the rolling similarity-score window. Errors with INVALID_CACHE_TYPE on agent_cache. |
| cache_tool_effectivenessB | Per-tool hit rate, cost saved, and TTL recommendation for an agent_cache. Errors with INVALID_CACHE_TYPE on semantic_cache. |
| cache_similarity_distributionA | Histogram of recent similarity scores (20 buckets, width 0.1) for a semantic_cache. Errors on agent_cache. |
| cache_recent_changesA | Recent proposals for a single cache (any status), so agents can avoid re-proposing pending or recently-applied changes. Newest first. |
| cache_propose_threshold_adjustB | Propose a semantic-cache similarity-threshold change for review. Creates a pending proposal that requires human approval before any change is applied. Reasoning must be at least 20 characters. |
| cache_propose_tool_ttl_adjustA | Propose an agent-cache per-tool TTL change for review. Creates a pending proposal that requires human approval. Reasoning must be at least 20 characters. |
| cache_propose_invalidateA | Propose a cache invalidation for review. Filter shape depends on cache type: semantic_cache requires filter_kind=valkey_search + filter_expression; agent_cache requires filter_kind in (tool|key_prefix|session) + filter_value. Warns when estimated_affected exceeds 10000. |
| cache_list_pending_proposalsA | List pending cache proposals for the active instance, newest first. Optionally filter by cache_name. |
| cache_get_proposalA | Fetch a single cache proposal by id, including its audit trail. |
| cache_approve_proposalA | Approve a pending proposal. Synchronously applies the change to Valkey and returns the terminal status (applied|failed). Idempotent: a second call on an already-applied proposal returns the cached result. |
| cache_reject_proposalA | Reject a pending proposal. Optionally records a reason in the audit trail. |
| cache_edit_and_approve_proposalA | Edit an existing pending proposal and approve it in one step. Provide exactly one edit field matching the proposal type: new_threshold for threshold_adjust, new_ttl_seconds for tool_ttl_adjust. Invalidate proposals are not editable. |
| stop_monitorA | Stop a persistent BetterDB monitor process that was previously started with start_monitor or --autostart --persist. |
| memory_storesA | List agent-memory stores discovered on an instance (name, capabilities, stats key). |
| memory_listA | List memories in a store, newest first, with optional scope and tag filters. |
| memory_getB | Fetch a single memory by ID from a store. |
| memory_statsB | Get item count, eviction count, and live config for a memory store. |
| memory_recallB | Recall memories from a store by a precomputed query vector (the caller supplies the embedding). |
| memory_forgetA | Propose forgetting memories (by id, or by scope/tags). Creates a pending proposal that a human must approve before anything is deleted. |
| memory_list_pending_forgetsB | List pending forget proposals awaiting approval on an instance. |
| memory_approve_forgetA | Approve a pending forget proposal, applying the deletion against the live store. |
| memory_reject_forgetA | Reject a pending forget proposal without deleting anything. |
| ai_list_instancesA | List AI component instances (semantic caches, agent caches, agent memory stores, retrieval pipelines) auto-discovered on the connected Valkey/Redis instance, with liveness and the latest stored metrics sample. This is the superset discovery view across all AI components — use cache_list for cache-specific live stats and memory_stores for memory-store details. Use the returned instance field value as the field parameter of ai_instance_history. |
| ai_instance_historyA | Get the stored metrics time-series for one AI component instance (hits, misses, hit rate, cost saved, evictions, item count, index size, threshold). Use ai_list_instances first to find the instance field identifier. Use this to see trends: hit-rate degradation, growth, threshold drift. |
| list_ai_tracesA | List recent AI application traces ingested via OpenTelemetry (LLM calls, cache lookups, memory recalls, retrieval spans). Not tied to a Valkey instance — traces come from instrumented AI apps. Use get_ai_trace for a full span waterfall and correlate_ai_trace to join a trace with live Valkey state. |
| get_ai_traceA | Get the full span waterfall for one AI trace: every span with timing, parent relationships, and attributes (model, cache hit/miss, similarity scores). Use list_ai_traces to find trace IDs. |
| correlate_ai_traceA | Explain WHY a trace behaved the way it did by joining its cache/memory spans with live Valkey state: does the key still exist, what is its TTL, what threshold was active, what is the index state. The strongest tool for diagnosing unexpected cache misses or stale memory recalls. Requires a selected instance (the one the AI components run on). |
| get_forecastA | Get a capacity forecast for one metric: current trajectory and projected time until the resource ceiling is hit. Metric kinds: opsPerSec, usedMemory, cpuTotal, memFragmentation. Use for capacity planning ("when does memory run out at current growth?"). |
| get_latency_regressionsA | Get detected latency regressions (sustained p99 command-latency degradations vs baseline) from persisted storage. Companion to get_anomalies: same event store, pre-filtered to latency regressions. Use when investigating "the database got slower". |
| get_largest_keysA | Get the largest keys from key analytics snapshots, ranked by measured memory usage. Coverage note: snapshots track the biggest collections by element count, so a memory-heavy key with few elements may not be tracked. Companion to get_hot_keys, which ranks by access frequency. Use to find memory hogs, bloated hashes/sets, or candidates for TTL/eviction. Requires BetterDB Pro (keyAnalytics). |
| get_vector_indexesA | Get health details for every vector search index on the instance: document count, memory usage, indexing failures, and percent indexed. Requires the Search module (valkey-search / RediSearch) on the connection — errors clearly if absent. Use to diagnose incomplete indexing or index memory growth. |
| get_inference_latencyA | Get the FT.SEARCH latency profile: p50/p95/p99 per vector index over the sampling window, plus SLA breach status per index. sla is null when BetterDB Pro inference SLA monitoring is absent or unlicensed, and an empty array when it is active with no indexes configured. More specific than get_latency, which covers general command latency. Use to answer "are vector searches meeting their latency budget?". |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BetterDB-inc/monitor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server