db-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| server_infoA | Get information about the db-mcp server and registered adapters |
| server_healthA | Check health status of all database connections |
| list_adaptersA | List all registered database adapters |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| sqlite_help | Critical gotchas, WASM vs Native comparison, and Code Mode API reference |
| sqlite_help_core | Tool reference for the core tool group |
| sqlite_help_json | Tool reference for the json tool group |
| sqlite_help_text | Tool reference for the text tool group |
| sqlite_help_stats | Tool reference for the stats tool group |
| sqlite_help_vector | Tool reference for the vector tool group |
| sqlite_help_geo | Tool reference for the geo tool group |
| sqlite_help_admin | Tool reference for the admin tool group |
| sqlite_help_transactions | Tool reference for the transactions tool group |
| sqlite_help_introspection | Tool reference for the introspection tool group |
| sqlite_help_migration | Tool reference for the migration tool group |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: listing adapters, checking health, and getting server info. There is no overlap or ambiguity between them.
All names use snake_case, but the pattern is mixed: list_adapters uses verb_noun, while server_health and server_info are noun phrases. This is a minor inconsistency.
With 3 tools, the server is tightly scoped for its purpose, providing essential operations without unnecessary bloat.
The server covers listing adapters and checking health, but lacks core CRUD operations for adapters (e.g., register, unregister) and any database querying tools, leaving major gaps for a database MCP server.