Skip to main content
Glama
jlg-formation

mcp-server-sqlite

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
SQLITE_DB_PATHNoPath to the SQLite database file. If not set, the --db-path command-line argument must be used.

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
execute_sqlA

Exécute une ou plusieurs requêtes SQL sur la base SQLite.

    Args:
        sql: SQL arbitraire (SELECT, INSERT, UPDATE, DELETE, DDL…).
             Plusieurs instructions peuvent être séparées par ';'.

    Returns:
        Une chaîne JSON : {"rows": [...]} pour les requêtes renvoyant des
        lignes, {"rowcount": n} pour les modifications/DDL, ou
        {"error": "..."} en cas d'erreur SQL.
    

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.4/5.0

Scored across 1 tool

Disambiguation5/5

With only one tool, there is no ambiguity; the agent cannot confuse it with any other tool.

Naming Consistency5/5

The single tool name 'execute_sql' follows a clear verb_noun pattern, consistent with best practices.

Tool Count4/5

One tool is minimal but fully capable for a SQLite database server, covering all operations via arbitrary SQL queries.

Completeness5/5

The tool accepts any SQL statement, enabling full CRUD, DDL, and other database operations without gaps.

Maintenance

ActivityStale
ResponsivenessNo issues