MCP.so
ログイン

MCPDatabases

@alvnavraii

MCPDatabases について

MCP Server to manage PostGress and SQLite. In fact, you could use any Database Engine

基本情報

カテゴリ

その他

ランタイム

python

トランスポート

stdio

公開者

alvnavraii

投稿者

rafael alvarez

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "SqliteManagement": {
      "command": "/home/slendy/MCPProjects/DataBase/.venv/bin/python",
      "args": [
        "/home/slendy/MCPProjects/DataBase/main.py",
        "--engine",
        "sqlite",
        "--url",
        "sqlite:////home/slendy/MCPProjects/DataBase/ecommerce.db"
      ]
    },
    "PostgressManagement": {
      "command": "/home/slendy/MCPProjects/DataBase/.venv/bin/python",
      "args": [
        "/home/slendy/MCPProjects/DataBase/main.py",
        "--engine",
        "postgresql",
        "--url",
        "postgresql://postgres:postgres@localhost:5433/ecommerce"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is MCPDatabases?

MCPDatabases is an MCP server that manages PostgreSQL and SQLite databases, enabling CRUD operations, table management, and data migration between the two engines. It is intended for applications that need flexibility across PostgreSQL and SQLite.

How to use MCPDatabases?

Run the MCP server with python3 main.py. Configure services in mcp_config.json or claude_desktop_config.json using command, args with --engine and --url flags for each database engine. The server exposes tools for queries, inserts, updates, deletes, and table alterations.

Key features of MCPDatabases

  • CRUD operations: create, read, update, delete records.
  • Table management: create, alter, drop tables.
  • Data migration between PostgreSQL and SQLite.
  • Execute custom SQL queries for analysis.

Use cases of MCPDatabases

  • Migrate all tables and data from a PostgreSQL database to SQLite.
  • Perform administrative CRUD operations on a production PostgreSQL database via MCP tools.
  • Manage multiple database engines (PostgreSQL and SQLite) from a single MCP configuration.
  • Run ad‑hoc SELECT queries for reporting or maintenance.

FAQ from MCPDatabases

What Python version is required?

Python 3.8 or higher is required.

What dependencies are needed?

The server requires psycopg2-binary, the built-in sqlite3 module, and a running PostgreSQL server with a configured database.

How do I configure database credentials?

Set the --url argument with your database connection string (e.g., postgresql://user:password@localhost:5432/ecommerce). Do not include real passwords in the config file; replace user and password with the actual values. Also update credentials in connection.py.

Can I use a different PostgreSQL port?

Yes. The default port is 5432. You can specify another port (e.g., 5433) in the connection URL.

Is there an alternative version with SSE support?

Yes. An alternative version with Server‑Sent Events (SSE) support is available at mcpDataBasesSSE on GitHub.

コメント

「その他」の他のコンテンツ