Loading connector details…
Loading connector details…
Choose a unique username to continue using AgentHotspot
by jonnyhoff • Data & Databases
An MCP server using FastMCP that provides structured tools to query, update, and inspect SQLite databases.
Execute SELECT queries against a local SQLite database and receive results as JSON for downstream processing.
Perform INSERT, UPDATE, or DELETE operations on a SQLite database programmatically within workflows.
Inspect and modify database schema: list tables, describe table schema, and create new tables via SQL.
This MCP server exposes SQLite operations (read, write, create table, list tables, describe table) as callable tools for agents. It allows agents to execute SELECT queries and receive JSON results, run INSERT/UPDATE/DELETE operations, and manage schemas via SQL. Designed to be run locally or installed via pipx, it simplifies programmatic interaction with SQLite from agent workflows.
Execute a SELECT query on the SQLite database. Args: full_db_path: The full path to the SQLite database file. query: The SELECT SQL query to execute. Returns: A list of dictionaries, where each dictionary represents a row.
Execute an INSERT, UPDATE, or DELETE query on the SQLite database. Args: full_db_path: The full path to the SQLite database file. query: The SQL query (INSERT, UPDATE, DELETE) to execute. Returns: A success message indicating the number of rows affected.
Create a new table in the SQLite database using raw SQL. Args: full_db_path: The full path to the SQLite database file. table_sql: The `CREATE TABLE` SQL statement. Returns: A success message.
List all tables in the SQLite database. Args: full_db_path: The full path to the SQLite database file. Returns: A list of table names.
Get the schema information (columns, types, etc.) for a specific table. Args: full_db_path: The full path to the SQLite database file. table_name: The name of the table to describe. Returns: A list of dictionaries, where each dictionary describes a column. Keys include: 'cid', 'name', 'type', 'notnull', 'dflt_value', 'pk'.
Scores are informational only and provided “as is” without warranty. AgentHotspot assumes no liability for actions taken based on these ratings.