mcp-db-server 0.1.2__tar.gz → 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-db-server
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: MCP Database Server with read-only access
5
5
  Author-email: Suphachai Phetthamrong <suphachaiphetthamrong@gmail.com>
6
6
  License: MIT
@@ -26,7 +26,7 @@ A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server implem
26
26
 
27
27
  ## Project Structure
28
28
 
29
- - `mcp_db/`: Main Python package for the MCP server.
29
+ - `mcp_db_server/`: Main Python package for the MCP server.
30
30
  - `__init__.py`: Entry point and server initialization.
31
31
  - `db/`: Repository implementations (`sqlite_repository.py`, `mysql_repository.py`).
32
32
  - `seed.py`: Utility script to populate the database (write access).
@@ -12,7 +12,7 @@ A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server implem
12
12
 
13
13
  ## Project Structure
14
14
 
15
- - `mcp_db/`: Main Python package for the MCP server.
15
+ - `mcp_db_server/`: Main Python package for the MCP server.
16
16
  - `__init__.py`: Entry point and server initialization.
17
17
  - `db/`: Repository implementations (`sqlite_repository.py`, `mysql_repository.py`).
18
18
  - `seed.py`: Utility script to populate the database (write access).
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-db-server
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: MCP Database Server with read-only access
5
5
  Author-email: Suphachai Phetthamrong <suphachaiphetthamrong@gmail.com>
6
6
  License: MIT
@@ -26,7 +26,7 @@ A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server implem
26
26
 
27
27
  ## Project Structure
28
28
 
29
- - `mcp_db/`: Main Python package for the MCP server.
29
+ - `mcp_db_server/`: Main Python package for the MCP server.
30
30
  - `__init__.py`: Entry point and server initialization.
31
31
  - `db/`: Repository implementations (`sqlite_repository.py`, `mysql_repository.py`).
32
32
  - `seed.py`: Utility script to populate the database (write access).
@@ -0,0 +1,14 @@
1
+ README.md
2
+ pyproject.toml
3
+ mcp_db_server/__init__.py
4
+ mcp_db_server/__main__.py
5
+ mcp_db_server.egg-info/PKG-INFO
6
+ mcp_db_server.egg-info/SOURCES.txt
7
+ mcp_db_server.egg-info/dependency_links.txt
8
+ mcp_db_server.egg-info/entry_points.txt
9
+ mcp_db_server.egg-info/requires.txt
10
+ mcp_db_server.egg-info/top_level.txt
11
+ mcp_db_server/db/__init__.py
12
+ mcp_db_server/db/mysql_repository.py
13
+ mcp_db_server/db/repository.py
14
+ mcp_db_server/db/sqlite_repository.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mcp-db-server = mcp_db_server:main
@@ -0,0 +1 @@
1
+ mcp_db_server
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "mcp-db-server"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "MCP Database Server with read-only access"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -21,4 +21,4 @@ dependencies = [
21
21
  ]
22
22
 
23
23
  [project.scripts]
24
- mcp-db-server = "mcp_db:main"
24
+ mcp-db-server = "mcp_db_server:main"
@@ -1,14 +0,0 @@
1
- README.md
2
- pyproject.toml
3
- mcp_db/__init__.py
4
- mcp_db/__main__.py
5
- mcp_db/db/__init__.py
6
- mcp_db/db/mysql_repository.py
7
- mcp_db/db/repository.py
8
- mcp_db/db/sqlite_repository.py
9
- mcp_db_server.egg-info/PKG-INFO
10
- mcp_db_server.egg-info/SOURCES.txt
11
- mcp_db_server.egg-info/dependency_links.txt
12
- mcp_db_server.egg-info/entry_points.txt
13
- mcp_db_server.egg-info/requires.txt
14
- mcp_db_server.egg-info/top_level.txt
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- mcp-db-server = mcp_db:main
File without changes