SQLite MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| --db-path | Yes | The path to the SQLite database file |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| read_queryB | Execute a SELECT query on the SQLite database |
| write_queryA | Execute an INSERT, UPDATE, or DELETE query on the SQLite database |
| create_tableC | Create a new table in the SQLite database |
| list_tablesA | List all tables in the SQLite database |
| describe_tableA | Get the schema information for a specific table |
| append_insightB | Add a business insight to the memo |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| mcp-demo | A prompt to seed the database with initial data and demonstrate what you can do with an SQLite MCP Server + Claude |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Business Insights Memo | A living document of discovered business insights |
TDQS
Scored across 6 tools
The five database tools (read_query, write_query, create_table, list_tables, describe_table) have clearly distinct purposes. The append_insight tool is unrelated to SQLite but its description makes its purpose unambiguous, so no major confusion arises. However, it sits oddly beside the rest.
All tool names follow a consistent verb_noun pattern (e.g., read_query, create_table, append_insight). The pattern is uniform across the entire set, with no mixing of conventions.
Six tools is a well-scoped count for a SQLite database server. Each tool covers a fundamental operation without being bloated or sparse.
The database tools cover essential operations (query, write, schema management), though missing operations like drop table or alter table. More critically, the append_insight tool is out of place for a SQLite server, creating a domain gap and distracting from the core purpose.