awslabs.s3-tables-mcp-server 0.0.7__py3-none-any.whl → 0.0.10__py3-none-any.whl
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.
- awslabs/s3_tables_mcp_server/__init__.py +1 -1
- awslabs/s3_tables_mcp_server/s3_operations.py +2 -2
- awslabs/s3_tables_mcp_server/server.py +1 -1
- {awslabs_s3_tables_mcp_server-0.0.7.dist-info → awslabs_s3_tables_mcp_server-0.0.10.dist-info}/METADATA +31 -2
- {awslabs_s3_tables_mcp_server-0.0.7.dist-info → awslabs_s3_tables_mcp_server-0.0.10.dist-info}/RECORD +9 -9
- {awslabs_s3_tables_mcp_server-0.0.7.dist-info → awslabs_s3_tables_mcp_server-0.0.10.dist-info}/WHEEL +0 -0
- {awslabs_s3_tables_mcp_server-0.0.7.dist-info → awslabs_s3_tables_mcp_server-0.0.10.dist-info}/entry_points.txt +0 -0
- {awslabs_s3_tables_mcp_server-0.0.7.dist-info → awslabs_s3_tables_mcp_server-0.0.10.dist-info}/licenses/LICENSE +0 -0
- {awslabs_s3_tables_mcp_server-0.0.7.dist-info → awslabs_s3_tables_mcp_server-0.0.10.dist-info}/licenses/NOTICE +0 -0
|
@@ -28,7 +28,7 @@ async def get_bucket_metadata_table_configuration(
|
|
|
28
28
|
determines how metadata is stored and managed for the bucket.
|
|
29
29
|
|
|
30
30
|
Permissions:
|
|
31
|
-
You must have the s3:
|
|
31
|
+
You must have the s3:GetBucketMetadataConfiguration permission to use this operation.
|
|
32
32
|
|
|
33
33
|
Args:
|
|
34
34
|
bucket: The name of the S3 bucket
|
|
@@ -39,5 +39,5 @@ async def get_bucket_metadata_table_configuration(
|
|
|
39
39
|
Dict containing the bucket metadata table configuration
|
|
40
40
|
"""
|
|
41
41
|
client = get_s3_client(region_name)
|
|
42
|
-
response = client.
|
|
42
|
+
response = client.get_bucket_metadata_configuration(Bucket=bucket)
|
|
43
43
|
return dict(response)
|
|
@@ -776,7 +776,7 @@ async def get_bucket_metadata_config(
|
|
|
776
776
|
- request_id: String
|
|
777
777
|
|
|
778
778
|
Permissions:
|
|
779
|
-
You must have the s3:
|
|
779
|
+
You must have the s3:GetBucketMetadataConfiguration permission to use this operation.
|
|
780
780
|
"""
|
|
781
781
|
return await s3_operations.get_bucket_metadata_table_configuration(
|
|
782
782
|
bucket=bucket, region_name=region_name
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.s3-tables-mcp-server
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.10
|
|
4
4
|
Summary: An AWS Labs Model Context Protocol (MCP) server for awslabs.s3-tables-mcp-server
|
|
5
5
|
Project-URL: homepage, https://awslabs.github.io/mcp/
|
|
6
6
|
Project-URL: docs, https://awslabs.github.io/mcp/servers/s3-tables-mcp-server/
|
|
@@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.13
|
|
23
23
|
Requires-Python: >=3.10
|
|
24
|
-
Requires-Dist: boto3>=1.
|
|
24
|
+
Requires-Dist: boto3>=1.40.8
|
|
25
25
|
Requires-Dist: daft>=0.5.8
|
|
26
26
|
Requires-Dist: loguru>=0.7.0
|
|
27
27
|
Requires-Dist: mcp[cli]>=1.11.0
|
|
@@ -96,6 +96,35 @@ Configure the MCP server in your MCP client configuration (e.g., for Amazon Q De
|
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
```
|
|
99
|
+
### Windows Installation
|
|
100
|
+
|
|
101
|
+
For Windows users, the MCP server configuration format is slightly different:
|
|
102
|
+
|
|
103
|
+
```json
|
|
104
|
+
{
|
|
105
|
+
"mcpServers": {
|
|
106
|
+
"awslabs.s3-tables-mcp-server": {
|
|
107
|
+
"disabled": false,
|
|
108
|
+
"timeout": 60,
|
|
109
|
+
"type": "stdio",
|
|
110
|
+
"command": "uv",
|
|
111
|
+
"args": [
|
|
112
|
+
"tool",
|
|
113
|
+
"run",
|
|
114
|
+
"--from",
|
|
115
|
+
"awslabs.s3-tables-mcp-server@latest",
|
|
116
|
+
"awslabs.s3-tables-mcp-server.exe"
|
|
117
|
+
],
|
|
118
|
+
"env": {
|
|
119
|
+
"FASTMCP_LOG_LEVEL": "ERROR",
|
|
120
|
+
"AWS_PROFILE": "your-aws-profile",
|
|
121
|
+
"AWS_REGION": "us-east-1"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
```
|
|
127
|
+
|
|
99
128
|
|
|
100
129
|
or docker after a successful `docker build -t awslabs/s3-tables-mcp-server.`:
|
|
101
130
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
awslabs/__init__.py,sha256=BHp8_uaBohApyLlmVWvYVe5bSrH59FvLJ5cNTigMV_8,644
|
|
2
|
-
awslabs/s3_tables_mcp_server/__init__.py,sha256=
|
|
2
|
+
awslabs/s3_tables_mcp_server/__init__.py,sha256=9i2stGorjbeakw7lcxfd-yT2lWGCqrje433hDvFxoFg,755
|
|
3
3
|
awslabs/s3_tables_mcp_server/constants.py,sha256=qCWY9A9PAQXdVz-anO26zbQ72Dp79nGM7xeLR062a_o,4971
|
|
4
4
|
awslabs/s3_tables_mcp_server/database.py,sha256=YorxcSx-9typfQ5W_LzwNPZkP47u__QSLJlp0fBsZLg,3851
|
|
5
5
|
awslabs/s3_tables_mcp_server/models.py,sha256=zWTFJLBhIZRLEgOCTyNcGvbItxqYbFJKH6se1EzXDjY,8097
|
|
6
6
|
awslabs/s3_tables_mcp_server/namespaces.py,sha256=KZqxJiEnlpxkqvbfygezbr0szwyDP2O0J6osyiPUzwg,2071
|
|
7
7
|
awslabs/s3_tables_mcp_server/resources.py,sha256=PXZo0sTVn34tXJ4mlw_OS90p12SNoLZs4Re0gV815wk,8281
|
|
8
|
-
awslabs/s3_tables_mcp_server/s3_operations.py,sha256
|
|
9
|
-
awslabs/s3_tables_mcp_server/server.py,sha256=
|
|
8
|
+
awslabs/s3_tables_mcp_server/s3_operations.py,sha256=-XS57fGBPryJ8ytfE-poNEEgnhWx2QSWyqpKiYusRuA,1645
|
|
9
|
+
awslabs/s3_tables_mcp_server/server.py,sha256=dP3dv-4o-Dq4mDU7jt1n7Rl9eCo7TVvKwth76b06C3o,32630
|
|
10
10
|
awslabs/s3_tables_mcp_server/table_buckets.py,sha256=JHmpB_P9h0Hz5Uis25_GPTD1G-mIODVwjaswwIGyCS4,4471
|
|
11
11
|
awslabs/s3_tables_mcp_server/tables.py,sha256=ITnRDHHrtRWLsRhff4TP4B7gGT_jRXy994oxK3x10a4,10143
|
|
12
12
|
awslabs/s3_tables_mcp_server/utils.py,sha256=SReyS3KsdikI9ycL5RsvtVI7MiRnA1W9bTiXGKf1lHc,4517
|
|
@@ -16,9 +16,9 @@ awslabs/s3_tables_mcp_server/file_processor/__init__.py,sha256=8PeggFRY3ZKBdxcFP
|
|
|
16
16
|
awslabs/s3_tables_mcp_server/file_processor/csv.py,sha256=1JfFFKbnK1qvDvpOKWoXIv9zca8MRlPXk2Phd7-GgIU,1650
|
|
17
17
|
awslabs/s3_tables_mcp_server/file_processor/parquet.py,sha256=TA9HmVPAnwOc3hv3zsL7J7sRd8gMINGFp5_r1eX7uUE,1458
|
|
18
18
|
awslabs/s3_tables_mcp_server/file_processor/utils.py,sha256=MkNE0c1tlR_bs5ZeCTqAuRCLQWOc3mJqnJxATbGwoEc,5613
|
|
19
|
-
awslabs_s3_tables_mcp_server-0.0.
|
|
20
|
-
awslabs_s3_tables_mcp_server-0.0.
|
|
21
|
-
awslabs_s3_tables_mcp_server-0.0.
|
|
22
|
-
awslabs_s3_tables_mcp_server-0.0.
|
|
23
|
-
awslabs_s3_tables_mcp_server-0.0.
|
|
24
|
-
awslabs_s3_tables_mcp_server-0.0.
|
|
19
|
+
awslabs_s3_tables_mcp_server-0.0.10.dist-info/METADATA,sha256=sdaeb8dC87dyrYCppH_zJEZBr4jWrIuddV9WNOOSkMk,12097
|
|
20
|
+
awslabs_s3_tables_mcp_server-0.0.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
21
|
+
awslabs_s3_tables_mcp_server-0.0.10.dist-info/entry_points.txt,sha256=WRA45Bi2dVY5hskxkka_e7BAGRqG1KiW3ImTBnHSyLs,90
|
|
22
|
+
awslabs_s3_tables_mcp_server-0.0.10.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
23
|
+
awslabs_s3_tables_mcp_server-0.0.10.dist-info/licenses/NOTICE,sha256=jm-1A_8i-wl7KYs2Ynj2A29vXWJCMKLHmGfy4P_B51Y,96
|
|
24
|
+
awslabs_s3_tables_mcp_server-0.0.10.dist-info/RECORD,,
|
{awslabs_s3_tables_mcp_server-0.0.7.dist-info → awslabs_s3_tables_mcp_server-0.0.10.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|