SQLite MCP Server
A Model Context Protocol (MCP) server that provides SQLite database operations through a standardized interface.
Features
- In-memory SQLite database (configurable for file-based storage)
- SQL operations (SELECT, INSERT, UPDATE, DELETE)
- Table management (CREATE, LIST, DESCRIBE)
- Business insights memo tracking
- Docker support for easy deployment
Development & Deployment
Local Development
# Install dependencies and build
npm install
npm start
Docker Deployment
# Build and run with Docker
docker build -t sqlite-mcp-server .
docker run -d --name sqlite-mcp sqlite-mcp-server
Nixpacks Deployment
The application can be easily deployed using Nixpacks with platforms like Railway, Coolify, or Render:
# Deploy with Nixpacks
nixpacks build . --name sqlite-mcp-server
No additional configuration is needed as the project includes a Dockerfile.
Available Tools
read_query
: Execute SELECT querieswrite_query
: Execute INSERT, UPDATE, or DELETE queriescreate_table
: Create new tableslist_tables
: List all tables in the databasedescribe_table
: View schema information for a tableappend_insight
: Add business insights to the memo
Remote Server Connection
To connect using SSE in n8n:
- Add an MCP Client node
- Configure SSE connection:
- SSE URL:
http://localhost:3000/sse
- Messages Post Endpoint:
http://localhost:3000/messages
- No additional headers required
- SSE URL:
Example Usage
// Create a table
await callTool('create_table', {
query: 'CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)'
});
// Insert data
await callTool('write_query', {
query: 'INSERT INTO users (name) VALUES ("John Doe")'
});
// Query data
const result = await callTool('read_query', {
query: 'SELECT * FROM users'
});
Environment Variables
None required by default. If using file-based storage, modify the database path in src/index.ts
.
Contributing
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
License
ISC
SQLite Database Server
Project Details
- isaacgounton/sqlite-mcp-server
- Last Updated: 3/17/2025
Recomended MCP Servers
A mockup full stack app built with React, FastAPI, MongoDB, and Docker, powered by CLIP for multi-tagging and...
tinypng 图片压缩脚本,自动遍历项目图片,并原地替换,单个 node 文件,无需依赖 npm 包,下载单文件即可使用
A Whistle proxy management tool based on Model Context Protocol that allows AI assistants to directly control local...
Model Context Protocol for Solana Client
A Model Context Protocol (MCP) server for creating and managing Framer plugins with web3 capabilities
↔️
Extended Jupyter Model Context Protocol (MCP) Server.
Mcp server to connect with zerodha's kite trade apis
基于 MCP 协议的腾讯云 COS MCP Server,无需编码即可让大模型快速接入腾讯云存储 (COS) 和数据万象 (CI) 能力。
Brain-Computer Interface (BCI) implementation with Model Context Protocol (MCP) for advanced neural signal processing and AI integration
API Market MCP Servers