Database interaction and business intelligence capabilities.
10K+
14
6 Tools
Version 4.43 or later needs to be installed to add the server automatically
About
Database interaction and business intelligence capabilities.
Attribute | Details |
---|---|
Docker Image | mcp/sqlite |
Author | modelcontextprotocol |
Repository | https://github.com/modelcontextprotocol/servers |
Dockerfile | https://github.com/modelcontextprotocol/servers/blob/2025.4.24/src/sqlite/Dockerfile |
Docker Image built by | Docker Inc. |
Docker Scout Health Score | |
Verify Signature | COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/sqlite --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub |
Licence | MIT License |
Tools provided by this Server | Short Description |
---|---|
append_insight | Add a business insight to the memo |
create_table | Create a new table in the SQLite database |
describe_table | Get the schema information for a specific table |
list_tables | List all tables in the SQLite database |
read_query | Execute a SELECT query on the SQLite database |
write_query | Execute an INSERT, UPDATE, or DELETE query on the SQLite database |
append_insight
Add a business insight to the memo
Parameters | Type | Description |
---|---|---|
insight | string | Business insight discovered from data analysis |
create_table
Create a new table in the SQLite database
Parameters | Type | Description |
---|---|---|
query | string | CREATE TABLE SQL statement |
describe_table
Get the schema information for a specific table
Parameters | Type | Description |
---|---|---|
table_name | string | Name of the table to describe |
list_tables
List all tables in the SQLite database
read_query
Execute a SELECT query on the SQLite database
Parameters | Type | Description |
---|---|---|
query | string | SELECT SQL query to execute |
write_query
Execute an INSERT, UPDATE, or DELETE query on the SQLite database
Parameters | Type | Description |
---|---|---|
query | string | SQL query to execute |
{
"mcpServers": {
"SQLite": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"/local-directory:/local-directory",
"mcp/sqlite",
"--db-path",
"/mcp/db.sqlite"
]
}
}
}
Manual installation
You can install the MCP server using:
Installation for