Database MCP Server for SQL operations
Project description
database-mcp-python/ ├── src/ │ ├── init.py │ ├── core/ │ │ ├── init.py │ │ ├── database_mcp.py # 主MCP类 │ │ └── manager.py # 管理器类 │ ├── datasource/ │ │ ├── init.py │ │ ├── base.py # DataSource基类 │ │ ├── mysql_datasource.py # MySQL数据源 │ │ ├── oracle_datasource.py # Oracle数据源 │ │ └── factory.py # 数据源工厂 │ ├── strategy/ │ │ ├── init.py │ │ ├── database_strategy.py # 数据库策略基类(当前文件) │ │ ├── mysql_strategy.py # MySQL策略 │ │ └── oracle_strategy.py # Oracle策略 │ ├── model/ │ │ ├── init.py │ │ ├── data_group.py # DataGroup类 │ │ ├── delete_condition.py # DeleteCondition类 │ │ ├── query_condition.py # 查询条件类 │ │ └── table_metadata.py # 表元数据类 │ ├── config/ │ │ ├── init.py │ │ ├── config_loader.py # 配置加载器 │ │ └── database_config.py # 数据库配置类 │ ├── exception/ │ │ ├── init.py │ │ ├── database_error.py # 数据库异常类 │ │ └── connection_error.py # 连接异常类 │ └── utils/ │ ├── init.py │ ├── connection_pool.py # 连接池工具 │ └── validator.py # 验证工具 ├── tests/ │ ├── init.py │ ├── core/ │ ├── datasource/ │ ├── strategy/ │ ├── model/ │ └── utils/ ├── examples/ │ ├── init.py │ └── usage_example.py ├── docs/ │ └── README.md ├── requirements.txt └── setup.py
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file database_mcp_server-1.0.1.tar.gz.
File metadata
- Download URL: database_mcp_server-1.0.1.tar.gz
- Upload date:
- Size: 44.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fde719492b308fe88b81acf2558e906adf50707ed0bbd239c5804305a18ef3e2
|
|
| MD5 |
1b6ac5cfd8cdbf47b80900bc4e08bad3
|
|
| BLAKE2b-256 |
6f18f9d718e56d7782f143a1dc855d79894e378d1563c827ec59f6eff3263a2f
|
File details
Details for the file database_mcp_server-1.0.1-py3-none-any.whl.
File metadata
- Download URL: database_mcp_server-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
304c941157c7274e0dfaf98864035c352f703e5bea696e3c04e08429f73e22e1
|
|
| MD5 |
f27069625e0e5ce1db692ac05b69dc0b
|
|
| BLAKE2b-256 |
b1eea78872ab02ceee33728d362c3b9990871aa612dee7c0dec5f3f30c4b4db6
|