SQLite Database Demo
@anhnx000
About SQLite Database Demo
Some examples to build server, client test in model context protocol. Một số ví dụ sử dụng MCP
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"model_context_protocol_examples": {
"command": "python",
"args": [
"server.py"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is SQLite Database Demo?
SQLite Database Demo is an example FastMCP application that demonstrates async SQLite database operations using the aiosqlite library. It provides a ready‑to‑run server with automatic database initialization, sample data, and a query_db tool for retrieving records. This server is intended for developers learning or prototyping with FastMCP and async SQLite.
How to use SQLite Database Demo?
Clone the repository, install dependencies (pip install -r requirements.txt), then start the server with python server.py. On first run the database is automatically created and populated with sample data. Use the built‑in query_db tool to query all users.
Key features of SQLite Database Demo
- Async SQLite operations via
aiosqlite - Automatic database creation and sample data insertion
- Type‑safe database context management
- Proper connection lifecycle handling (cleanup on shutdown)
- Simple
query_dbtool for retrieving all users
Use cases of SQLite Database Demo
- Learning how to integrate async SQLite with FastMCP
- Prototyping a FastMCP server that reads from a local database
- Testing database‑related MCP tools without external infrastructure
- Demonstrating connection lifecycle and error handling patterns
FAQ from SQLite Database Demo
What is the database schema?
The demo includes a users table with columns id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL, and email TEXT UNIQUE NOT NULL.
How is the database initialized?
On first run, server.py automatically creates demo.db and populates it with two sample users: John Doe ([email protected]) and Jane Smith ([email protected]).
What tools are available?
The server exposes a query_db tool that executes a query returning all rows from the users table.
What are the runtime requirements?
Python 3.7 or higher, with dependencies aiosqlite>=0.19.0, pandas>=2.0.0, and numpy>=1.24.0.
How can I customize the database schema?
Edit the _init_db() method in database.py to add tables or columns. Add new query methods to the Database class and expose them through tools in server.py.
More Databases MCP servers
Meilisearch MCP Server
meilisearchA Model Context Protocol (MCP) server for interacting with Meilisearch through LLM interfaces.
MCP Server for Milvus
zilliztechModel Context Protocol Servers for Milvus
MongoDB MCP Server
mongodb-jsA Model Context Protocol server to connect to MongoDB databases and MongoDB Atlas Clusters.
Snowflake MCP Server
isaacwassermanmcp-server-duckdb
ktanaka101A Model Context Protocol (MCP) server implementation for DuckDB, providing database interaction capabilities
Comments