SQLite MCP Server
Databasestdiov2026.1.26
MCP server for SQLite database interaction and business intelligence. Enables AI agents to query SQLite databases, create and modify tables, run analytical queries, and generate insights from data. Supports read-write operations with transaction safety and provides schema introspection for understanding database structure.
Conectar
Añade esta configuración a .claude/mcp.json
{
"mcpServers": {
"sqlite": {
"command": "uvx",
"args": [
"mcp-server-sqlite",
"--db-path",
"./database.db"
]
}
}
}Herramientas (5)
read_query
Execute a SELECT query against the SQLite database.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "SQL SELECT query to execute"
}
}
}write_query
Execute an INSERT, UPDATE, or DELETE query against the database.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "SQL write query to execute"
}
}
}create_table
Create a new table in the SQLite database.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "CREATE TABLE SQL statement"
}
}
}list_tables
List all tables in the SQLite database.
{
"type": "object",
"properties": {}
}describe_table
Get the schema of a specific table including columns and types.
{
"type": "object",
"required": [
"table_name"
],
"properties": {
"table_name": {
"type": "string",
"description": "Name of the table to describe"
}
}
}Recursos
Este servidor no expone ningún recurso.
Prompts
Este servidor no expone ningún prompt.
Información del servidor
- Licencia
- Apache-2.0
- Versión
- 2026.1.26
- Estrellas
- 86,206
- Última actualización
- 27 de enero de 2026