awslabs.s3-tables-mcp-server 0.0.1__py3-none-any.whl → 0.0.2__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-0.0.1.dist-info → awslabs_s3_tables_mcp_server-0.0.2.dist-info}/METADATA +30 -2
- {awslabs_s3_tables_mcp_server-0.0.1.dist-info → awslabs_s3_tables_mcp_server-0.0.2.dist-info}/RECORD +6 -6
- {awslabs_s3_tables_mcp_server-0.0.1.dist-info → awslabs_s3_tables_mcp_server-0.0.2.dist-info}/WHEEL +0 -0
- {awslabs_s3_tables_mcp_server-0.0.1.dist-info → awslabs_s3_tables_mcp_server-0.0.2.dist-info}/entry_points.txt +0 -0
- {awslabs_s3_tables_mcp_server-0.0.1.dist-info → awslabs_s3_tables_mcp_server-0.0.2.dist-info}/licenses/LICENSE +0 -0
- {awslabs_s3_tables_mcp_server-0.0.1.dist-info → awslabs_s3_tables_mcp_server-0.0.2.dist-info}/licenses/NOTICE +0 -0
@@ -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.2
|
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/
|
@@ -24,7 +24,7 @@ Requires-Python: >=3.10
|
|
24
24
|
Requires-Dist: boto3>=1.34.0
|
25
25
|
Requires-Dist: daft>=0.5.8
|
26
26
|
Requires-Dist: loguru>=0.7.0
|
27
|
-
Requires-Dist: mcp[cli]>=1.
|
27
|
+
Requires-Dist: mcp[cli]>=1.11.0
|
28
28
|
Requires-Dist: pyarrow>=20.0.0
|
29
29
|
Requires-Dist: pydantic>=2.10.6
|
30
30
|
Requires-Dist: pyiceberg>=0.9.1
|
@@ -76,6 +76,10 @@ The S3 Tables MCP Server simplifies the management of S3-based tables by providi
|
|
76
76
|
|
77
77
|
### Installation
|
78
78
|
|
79
|
+
| Cursor | VS Code |
|
80
|
+
|:------:|:-------:|
|
81
|
+
| [](https://cursor.com/install-mcp?name=awslabs.s3-tables-mcp-server&config=eyJjb21tYW5kIjoidXZ4IGF3c2xhYnMuczMtdGFibGVzLW1jcC1zZXJ2ZXJAbGF0ZXN0IiwiZW52Ijp7IkFXU19QUk9GSUxFIjoieW91ci1hd3MtcHJvZmlsZSIsIkFXU19SRUdJT04iOiJ1cy1lYXN0LTEifX0%3D) | [](https://insiders.vscode.dev/redirect/mcp/install?name=S3%20Tables%20MCP%20Server&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22awslabs.s3-tables-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22AWS_PROFILE%22%3A%22your-aws-profile%22%2C%22AWS_REGION%22%3A%22us-east-1%22%7D%7D) |
|
82
|
+
|
79
83
|
Configure the MCP server in your MCP client configuration (e.g., for Amazon Q Developer CLI, edit `~/.aws/amazonq/mcp.json`):
|
80
84
|
|
81
85
|
```json
|
@@ -200,6 +204,30 @@ You can override the default by providing the `--log-dir` flag with a custom pat
|
|
200
204
|
| `Show the schema for customer_data table` | Retrieves the table structure and column definitions to understand the data format and types |
|
201
205
|
| `Run a query to find monthly revenue trends` | Performs data analysis using **read-only** SQL queries to extract business insights from stored table data. For write operations, only appending new data (inserts) is supported; updates and deletes are not available via SQL. |
|
202
206
|
|
207
|
+
## Using Amazon Q with S3 Tables MCP Server
|
208
|
+
|
209
|
+
Amazon Q can provide better answers and code suggestions when it has additional context. To enhance Amazon Q's understanding of S3 Tables, you can add the provided context file to your Q environment.
|
210
|
+
|
211
|
+
### How to Add Context to Amazon Q
|
212
|
+
|
213
|
+
1. **Download the CONTEXT.md file**
|
214
|
+
- Download the `CONTEXT.md` file from the GitHub repository for this project.
|
215
|
+
|
216
|
+
2. **Start Amazon Q Chat**
|
217
|
+
- Run the following command to start a chat session with Amazon Q:
|
218
|
+
```sh
|
219
|
+
q chat
|
220
|
+
```
|
221
|
+
|
222
|
+
3. **Add the Context File**
|
223
|
+
- In the Q chat, run:
|
224
|
+
```sh
|
225
|
+
/context add <path>/CONTEXT.md
|
226
|
+
```
|
227
|
+
- Replace `<path>` with the actual path to where you downloaded `CONTEXT.md`.
|
228
|
+
|
229
|
+
Now, Amazon Q will have improved context about S3 Tables and can provide more relevant answers.
|
230
|
+
|
203
231
|
## Security Considerations
|
204
232
|
|
205
233
|
When using this MCP server, consider:
|
{awslabs_s3_tables_mcp_server-0.0.1.dist-info → awslabs_s3_tables_mcp_server-0.0.2.dist-info}/RECORD
RENAMED
@@ -13,9 +13,9 @@ awslabs/s3_tables_mcp_server/tables.py,sha256=ITnRDHHrtRWLsRhff4TP4B7gGT_jRXy994
|
|
13
13
|
awslabs/s3_tables_mcp_server/utils.py,sha256=SReyS3KsdikI9ycL5RsvtVI7MiRnA1W9bTiXGKf1lHc,4517
|
14
14
|
awslabs/s3_tables_mcp_server/engines/__init__.py,sha256=O4wlFva3THWmjfaXfJAwi29mxJSKIhM0jcebVfd3S5U,615
|
15
15
|
awslabs/s3_tables_mcp_server/engines/pyiceberg.py,sha256=9D9xN1BMOpdNCBNZ2TnuR88kGodURHG6HOweM-oP918,9299
|
16
|
-
awslabs_s3_tables_mcp_server-0.0.
|
17
|
-
awslabs_s3_tables_mcp_server-0.0.
|
18
|
-
awslabs_s3_tables_mcp_server-0.0.
|
19
|
-
awslabs_s3_tables_mcp_server-0.0.
|
20
|
-
awslabs_s3_tables_mcp_server-0.0.
|
21
|
-
awslabs_s3_tables_mcp_server-0.0.
|
16
|
+
awslabs_s3_tables_mcp_server-0.0.2.dist-info/METADATA,sha256=XU8CVGfDUURiNbT99jV6gAiT33B6TDGUVUj6tYKusrc,11511
|
17
|
+
awslabs_s3_tables_mcp_server-0.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
18
|
+
awslabs_s3_tables_mcp_server-0.0.2.dist-info/entry_points.txt,sha256=WRA45Bi2dVY5hskxkka_e7BAGRqG1KiW3ImTBnHSyLs,90
|
19
|
+
awslabs_s3_tables_mcp_server-0.0.2.dist-info/licenses/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
20
|
+
awslabs_s3_tables_mcp_server-0.0.2.dist-info/licenses/NOTICE,sha256=jm-1A_8i-wl7KYs2Ynj2A29vXWJCMKLHmGfy4P_B51Y,96
|
21
|
+
awslabs_s3_tables_mcp_server-0.0.2.dist-info/RECORD,,
|
{awslabs_s3_tables_mcp_server-0.0.1.dist-info → awslabs_s3_tables_mcp_server-0.0.2.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|