Skip to main content
Glama
LuisGuar

SQLite MCP Server

by LuisGuar

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
--db-pathYesThe 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription
mcp-demoA 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

NameDescription
Business Insights MemoA living document of discovered business insights

TDQS

B3.4/5.0

Scored across 6 tools

Disambiguation4/5

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.

Naming Consistency5/5

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.

Tool Count5/5

Six tools is a well-scoped count for a SQLite database server. Each tool covers a fundamental operation without being bloated or sparse.

Completeness3/5

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.

Maintenance

ActivityInactive
ResponsivenessNo issues