mcp-dbutils: support both PostgreSQL and SQLite #73
Closed
nanbingxyz
started this conversation in
MCP Servers
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
mcp-dbutils是一款统一的数据库访问服务,支持多种数据库类型(PostgreSQL和SQLite)。它通过抽象层设计,为MCP服务器提供了简单、统一的数据库操作接口。
感谢 5ire 为开发提供的支持。
graph TD Client[客户端] --> DatabaseServer[数据库服务器] subgraph MCP服务器 DatabaseServer DatabaseHandler[数据库处理器] PostgresHandler[PostgreSQL处理器] SQLiteHandler[SQLite处理器] DatabaseServer --> DatabaseHandler DatabaseHandler --> PostgresHandler DatabaseHandler --> SQLiteHandler end PostgresHandler --> PostgreSQL[(PostgreSQL数据库)] SQLiteHandler --> SQLite[(SQLite数据库)]会话案例:
All reactions