sql-mcp 0.2.0__tar.gz → 0.3.0__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.
- {sql_mcp-0.2.0/sql_mcp.egg-info → sql_mcp-0.3.0}/PKG-INFO +6 -6
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/README.md +1 -1
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/pyproject.toml +5 -5
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/requirements.txt +1 -1
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/agent_server.py +1 -1
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/mcp_server.py +1 -1
- {sql_mcp-0.2.0 → sql_mcp-0.3.0/sql_mcp.egg-info}/PKG-INFO +6 -6
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp.egg-info/requires.txt +4 -4
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/LICENSE +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/MANIFEST.in +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/setup.cfg +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/__init__.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/__main__.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/api/__init__.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/api/api_client_sql.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/api_client.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/auth.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/dialects.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/main_agent.json +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/mcp/__init__.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/mcp/mcp_sql.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/mcp_config.json +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/safety.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/sql_input_models.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp/sql_response_models.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp.egg-info/SOURCES.txt +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp.egg-info/dependency_links.txt +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp.egg-info/entry_points.txt +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/sql_mcp.egg-info/top_level.txt +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/tests/test_api_wrapper.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/tests/test_auth.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/tests/test_concept_parity.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/tests/test_dialect_paths.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/tests/test_dialects.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/tests/test_init_dynamics.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/tests/test_safety.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/tests/test_sql_mcp_validation.py +0 -0
- {sql_mcp-0.2.0 → sql_mcp-0.3.0}/tests/test_startup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sql-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Generic SQL database (Postgres, MySQL/MariaDB, MSSQL, Oracle, SQLite) API + MCP Server + A2A Server for Agentic AI!
|
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -12,13 +12,13 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Requires-Python: <3.15,>=3.11
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: agent-utilities>=0.
|
|
15
|
+
Requires-Dist: agent-utilities>=0.49.0
|
|
16
16
|
Requires-Dist: python-dotenv>=1.0.0
|
|
17
17
|
Requires-Dist: sqlalchemy>=2.0.0
|
|
18
18
|
Provides-Extra: mcp
|
|
19
|
-
Requires-Dist: agent-utilities[mcp]>=0.
|
|
19
|
+
Requires-Dist: agent-utilities[mcp]>=0.49.0; extra == "mcp"
|
|
20
20
|
Provides-Extra: agent
|
|
21
|
-
Requires-Dist: agent-utilities[agent,logfire]>=0.
|
|
21
|
+
Requires-Dist: agent-utilities[agent,logfire]>=0.49.0; extra == "agent"
|
|
22
22
|
Provides-Extra: postgres
|
|
23
23
|
Requires-Dist: psycopg[binary]>=3.1.0; extra == "postgres"
|
|
24
24
|
Provides-Extra: mysql
|
|
@@ -28,7 +28,7 @@ Requires-Dist: pyodbc>=5.0.0; extra == "mssql"
|
|
|
28
28
|
Provides-Extra: oracle
|
|
29
29
|
Requires-Dist: oracledb>=2.0.0; extra == "oracle"
|
|
30
30
|
Provides-Extra: all
|
|
31
|
-
Requires-Dist: sql-mcp[agent,logfire,mcp,mssql,mysql,oracle,postgres]>=0.
|
|
31
|
+
Requires-Dist: sql-mcp[agent,logfire,mcp,mssql,mysql,oracle,postgres]>=0.3.0; extra == "all"
|
|
32
32
|
Provides-Extra: test
|
|
33
33
|
Requires-Dist: pytest-xdist>=3.6.0; extra == "test"
|
|
34
34
|
Requires-Dist: pytest; extra == "test"
|
|
@@ -61,7 +61,7 @@ Generic SQL database **API + MCP Server + A2A Agent** for the agent-utilities
|
|
|
61
61
|
ecosystem — one connector for **PostgreSQL, MySQL/MariaDB, Microsoft SQL Server,
|
|
62
62
|
Oracle, and SQLite** over SQLAlchemy 2.x Core.
|
|
63
63
|
|
|
64
|
-
*Version: 0.
|
|
64
|
+
*Version: 0.3.0*
|
|
65
65
|
|
|
66
66
|
> **Documentation** — Installation, deployment, and usage across the API, CLI, and
|
|
67
67
|
> MCP interfaces are maintained in [`docs/`](docs/index.md).
|
|
@@ -23,7 +23,7 @@ Generic SQL database **API + MCP Server + A2A Agent** for the agent-utilities
|
|
|
23
23
|
ecosystem — one connector for **PostgreSQL, MySQL/MariaDB, Microsoft SQL Server,
|
|
24
24
|
Oracle, and SQLite** over SQLAlchemy 2.x Core.
|
|
25
25
|
|
|
26
|
-
*Version: 0.
|
|
26
|
+
*Version: 0.3.0*
|
|
27
27
|
|
|
28
28
|
> **Documentation** — Installation, deployment, and usage across the API, CLI, and
|
|
29
29
|
> MCP interfaces are maintained in [`docs/`](docs/index.md).
|
|
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "sql-mcp"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.3.0"
|
|
8
8
|
description = "Generic SQL database (Postgres, MySQL/MariaDB, MSSQL, Oracle, SQLite) API + MCP Server + A2A Server for Agentic AI!"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
classifiers = [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Environment :: Console", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3",]
|
|
11
11
|
requires-python = ">=3.11, <3.15"
|
|
12
|
-
dependencies = [ "agent-utilities>=0.
|
|
12
|
+
dependencies = [ "agent-utilities>=0.49.0", "python-dotenv>=1.0.0", "sqlalchemy>=2.0.0",]
|
|
13
13
|
[[project.authors]]
|
|
14
14
|
name = "Audel Rouhi"
|
|
15
15
|
email = "knucklessg1@gmail.com"
|
|
@@ -18,13 +18,13 @@ email = "knucklessg1@gmail.com"
|
|
|
18
18
|
text = "MIT"
|
|
19
19
|
|
|
20
20
|
[project.optional-dependencies]
|
|
21
|
-
mcp = [ "agent-utilities[mcp]>=0.
|
|
22
|
-
agent = [ "agent-utilities[agent,logfire]>=0.
|
|
21
|
+
mcp = [ "agent-utilities[mcp]>=0.49.0",]
|
|
22
|
+
agent = [ "agent-utilities[agent,logfire]>=0.49.0",]
|
|
23
23
|
postgres = [ "psycopg[binary]>=3.1.0",]
|
|
24
24
|
mysql = [ "pymysql>=1.1.0",]
|
|
25
25
|
mssql = [ "pyodbc>=5.0.0",]
|
|
26
26
|
oracle = [ "oracledb>=2.0.0",]
|
|
27
|
-
all = [ "sql-mcp[mcp,agent,postgres,mysql,mssql,oracle,logfire]>=0.
|
|
27
|
+
all = [ "sql-mcp[mcp,agent,postgres,mysql,mssql,oracle,logfire]>=0.3.0",]
|
|
28
28
|
test = [ "pytest-xdist>=3.6.0", "pytest", "pytest-asyncio", "pytest-cov",]
|
|
29
29
|
|
|
30
30
|
[project.scripts]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sql-mcp
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Generic SQL database (Postgres, MySQL/MariaDB, MSSQL, Oracle, SQLite) API + MCP Server + A2A Server for Agentic AI!
|
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -12,13 +12,13 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Requires-Python: <3.15,>=3.11
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
-
Requires-Dist: agent-utilities>=0.
|
|
15
|
+
Requires-Dist: agent-utilities>=0.49.0
|
|
16
16
|
Requires-Dist: python-dotenv>=1.0.0
|
|
17
17
|
Requires-Dist: sqlalchemy>=2.0.0
|
|
18
18
|
Provides-Extra: mcp
|
|
19
|
-
Requires-Dist: agent-utilities[mcp]>=0.
|
|
19
|
+
Requires-Dist: agent-utilities[mcp]>=0.49.0; extra == "mcp"
|
|
20
20
|
Provides-Extra: agent
|
|
21
|
-
Requires-Dist: agent-utilities[agent,logfire]>=0.
|
|
21
|
+
Requires-Dist: agent-utilities[agent,logfire]>=0.49.0; extra == "agent"
|
|
22
22
|
Provides-Extra: postgres
|
|
23
23
|
Requires-Dist: psycopg[binary]>=3.1.0; extra == "postgres"
|
|
24
24
|
Provides-Extra: mysql
|
|
@@ -28,7 +28,7 @@ Requires-Dist: pyodbc>=5.0.0; extra == "mssql"
|
|
|
28
28
|
Provides-Extra: oracle
|
|
29
29
|
Requires-Dist: oracledb>=2.0.0; extra == "oracle"
|
|
30
30
|
Provides-Extra: all
|
|
31
|
-
Requires-Dist: sql-mcp[agent,logfire,mcp,mssql,mysql,oracle,postgres]>=0.
|
|
31
|
+
Requires-Dist: sql-mcp[agent,logfire,mcp,mssql,mysql,oracle,postgres]>=0.3.0; extra == "all"
|
|
32
32
|
Provides-Extra: test
|
|
33
33
|
Requires-Dist: pytest-xdist>=3.6.0; extra == "test"
|
|
34
34
|
Requires-Dist: pytest; extra == "test"
|
|
@@ -61,7 +61,7 @@ Generic SQL database **API + MCP Server + A2A Agent** for the agent-utilities
|
|
|
61
61
|
ecosystem — one connector for **PostgreSQL, MySQL/MariaDB, Microsoft SQL Server,
|
|
62
62
|
Oracle, and SQLite** over SQLAlchemy 2.x Core.
|
|
63
63
|
|
|
64
|
-
*Version: 0.
|
|
64
|
+
*Version: 0.3.0*
|
|
65
65
|
|
|
66
66
|
> **Documentation** — Installation, deployment, and usage across the API, CLI, and
|
|
67
67
|
> MCP interfaces are maintained in [`docs/`](docs/index.md).
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
agent-utilities>=0.
|
|
1
|
+
agent-utilities>=0.49.0
|
|
2
2
|
python-dotenv>=1.0.0
|
|
3
3
|
sqlalchemy>=2.0.0
|
|
4
4
|
|
|
5
5
|
[agent]
|
|
6
|
-
agent-utilities[agent,logfire]>=0.
|
|
6
|
+
agent-utilities[agent,logfire]>=0.49.0
|
|
7
7
|
|
|
8
8
|
[all]
|
|
9
|
-
sql-mcp[agent,logfire,mcp,mssql,mysql,oracle,postgres]>=0.
|
|
9
|
+
sql-mcp[agent,logfire,mcp,mssql,mysql,oracle,postgres]>=0.3.0
|
|
10
10
|
|
|
11
11
|
[mcp]
|
|
12
|
-
agent-utilities[mcp]>=0.
|
|
12
|
+
agent-utilities[mcp]>=0.49.0
|
|
13
13
|
|
|
14
14
|
[mssql]
|
|
15
15
|
pyodbc>=5.0.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|