awslabs.finch-mcp-server 0.1.1__py3-none-any.whl → 0.1.3__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/__init__.py +9 -6
- awslabs/finch_mcp_server/__init__.py +9 -6
- awslabs/finch_mcp_server/consts.py +14 -0
- awslabs/finch_mcp_server/models.py +14 -0
- awslabs/finch_mcp_server/server.py +14 -0
- awslabs/finch_mcp_server/utils/__init__.py +9 -6
- awslabs/finch_mcp_server/utils/build.py +14 -0
- awslabs/finch_mcp_server/utils/common.py +14 -0
- awslabs/finch_mcp_server/utils/ecr.py +14 -0
- awslabs/finch_mcp_server/utils/push.py +14 -0
- awslabs/finch_mcp_server/utils/vm.py +14 -0
- {awslabs_finch_mcp_server-0.1.1.dist-info → awslabs_finch_mcp_server-0.1.3.dist-info}/METADATA +6 -2
- awslabs_finch_mcp_server-0.1.3.dist-info/RECORD +17 -0
- awslabs_finch_mcp_server-0.1.1.dist-info/RECORD +0 -17
- {awslabs_finch_mcp_server-0.1.1.dist-info → awslabs_finch_mcp_server-0.1.3.dist-info}/WHEEL +0 -0
- {awslabs_finch_mcp_server-0.1.1.dist-info → awslabs_finch_mcp_server-0.1.3.dist-info}/entry_points.txt +0 -0
- {awslabs_finch_mcp_server-0.1.1.dist-info → awslabs_finch_mcp_server-0.1.3.dist-info}/licenses/LICENSE +0 -0
- {awslabs_finch_mcp_server-0.1.1.dist-info → awslabs_finch_mcp_server-0.1.3.dist-info}/licenses/NOTICE +0 -0
awslabs/__init__.py
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
"""AWSLabs package for MCP servers."""
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
"""awslabs.finch-mcp-server"""
|
|
13
16
|
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
"""Constants for the Finch MCP server.
|
|
2
16
|
|
|
3
17
|
This module defines constants used throughout the Finch MCP server.
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
"""Pydantic models for the Finch MCP server.
|
|
2
16
|
|
|
3
17
|
This module defines the data models used for request and response validation
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
"""Finch MCP Server main module.
|
|
2
16
|
|
|
3
17
|
This module provides the MCP server implementation for Finch container operations.
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
4
|
-
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
5
6
|
#
|
|
6
|
-
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
8
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
11
14
|
|
|
12
15
|
"""
|
|
13
16
|
Utility modules for the Finch MCP server.
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
"""Utility functions for building container images using Finch.
|
|
2
16
|
|
|
3
17
|
This module provides functions to build Docker images using Finch and check
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
"""Common utility functions for the Finch MCP server.
|
|
2
16
|
|
|
3
17
|
This module provides shared utility functions used across the Finch MCP server,
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
"""Utility functions for working with Amazon ECR repositories.
|
|
2
16
|
|
|
3
17
|
This module provides functions to check if an ECR repository exists and create it if needed.
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
"""Utility functions for pushing container images to repositories.
|
|
2
16
|
|
|
3
17
|
This module provides functions to push container images to repositories,
|
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
1
15
|
"""Utility functions for managing the Finch VM.
|
|
2
16
|
|
|
3
17
|
This module provides functions to check, initialize, start, stop, and configure
|
{awslabs_finch_mcp_server-0.1.1.dist-info → awslabs_finch_mcp_server-0.1.3.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.finch-mcp-server
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: A Model Context Protocol server for Finch to build and push container images
|
|
5
5
|
Project-URL: Homepage, https://awslabs.github.io/mcp/
|
|
6
6
|
Project-URL: Documentation, https://awslabs.github.io/mcp/servers/finch-mcp-server/
|
|
@@ -23,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
23
23
|
Requires-Python: >=3.10
|
|
24
24
|
Requires-Dist: boto3>=1.28.0
|
|
25
25
|
Requires-Dist: loguru>=0.7.0
|
|
26
|
-
Requires-Dist: mcp[cli]>=1.
|
|
26
|
+
Requires-Dist: mcp[cli]>=1.11.0
|
|
27
27
|
Requires-Dist: pydantic>=2.0.0
|
|
28
28
|
Requires-Dist: pyyaml>=6.0
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
@@ -55,6 +55,10 @@ This MCP server acts as a bridge between MCP clients and Finch, allowing generat
|
|
|
55
55
|
|
|
56
56
|
### Installation
|
|
57
57
|
|
|
58
|
+
| Cursor | VS Code |
|
|
59
|
+
|:------:|:-------:|
|
|
60
|
+
| [](https://cursor.com/install-mcp?name=awslabs.finch-mcp-server&config=eyJjb21tYW5kIjoidXZ4IGF3c2xhYnMuZmluY2gtbWNwLXNlcnZlckBsYXRlc3QiLCJlbnYiOnsiQVdTX1BST0ZJTEUiOiJkZWZhdWx0IiwiQVdTX1JFR0lPTiI6InVzLXdlc3QtMiIsIkZBU1RNQ1BfTE9HX0xFVkVMIjoiSU5GTyJ9LCJ0cmFuc3BvcnRUeXBlIjoic3RkaW8iLCJkaXNhYmxlZCI6ZmFsc2UsImF1dG9BcHByb3ZlIjpbXX0%3D) | [](https://insiders.vscode.dev/redirect/mcp/install?name=Finch%20MCP%20Server&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22awslabs.finch-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22AWS_PROFILE%22%3A%22default%22%2C%22AWS_REGION%22%3A%22us-west-2%22%2C%22FASTMCP_LOG_LEVEL%22%3A%22INFO%22%7D%2C%22transportType%22%3A%22stdio%22%2C%22disabled%22%3Afalse%2C%22autoApprove%22%3A%5B%5D%7D) |
|
|
61
|
+
|
|
58
62
|
Configure the MCP server in your MCP client configuration:
|
|
59
63
|
|
|
60
64
|
#### Default Mode (Read-only AWS Resources)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
awslabs/__init__.py,sha256=-pACKy0qlm5jBycQx_UdX7y03PRTO7uKL1QzktCS2rE,655
|
|
2
|
+
awslabs/finch_mcp_server/__init__.py,sha256=h3HPXFMBREimxSsvaysCH8Zb1g1du_mRJcSzQpHZxR4,670
|
|
3
|
+
awslabs/finch_mcp_server/consts.py,sha256=djCB0hkR6VbnGTjJ3piPORP4g4N5OqFoFqgb-o6ZM8s,1656
|
|
4
|
+
awslabs/finch_mcp_server/models.py,sha256=RrQpjBIKM3Mu2RYKr9zZv66ZdSt63lygjRWlGyUmxtY,1294
|
|
5
|
+
awslabs/finch_mcp_server/server.py,sha256=xCs7-tsXw1Q0x6C8MBgSMsNa2HyEoJ3ujwXoxpvn3vU,17399
|
|
6
|
+
awslabs/finch_mcp_server/utils/__init__.py,sha256=IZiJBNmbi0xUOH0s7ZBIWFuOWoRqdauvE2ibEwUQuXU,746
|
|
7
|
+
awslabs/finch_mcp_server/utils/build.py,sha256=2xVkfJpm0_b4tW_8moInNbXkqgBOexsH9bSWudpqZCA,5260
|
|
8
|
+
awslabs/finch_mcp_server/utils/common.py,sha256=OFPZT5B4cfrWWLB1TM_YiQ8p6FAGPDSbKu8IgDkzoWU,6225
|
|
9
|
+
awslabs/finch_mcp_server/utils/ecr.py,sha256=hB4Oy5HUmF85vxLI6EsQ5Gn8WyA11WAyiWaRy8z8hNQ,3867
|
|
10
|
+
awslabs/finch_mcp_server/utils/push.py,sha256=ZJYtIT5DrA07i7vTn5aPafSkoTBo4Yq05TqtplxyI0A,4680
|
|
11
|
+
awslabs/finch_mcp_server/utils/vm.py,sha256=GD8zBAxkkYzZgSM-FgM0sJCkw5XVYsCDSdNQcjLMaYo,16188
|
|
12
|
+
awslabs_finch_mcp_server-0.1.3.dist-info/METADATA,sha256=-H6KHylwcp9shiXOq72RxLdB--iZmNfAc-gbznm-4Ow,9563
|
|
13
|
+
awslabs_finch_mcp_server-0.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
14
|
+
awslabs_finch_mcp_server-0.1.3.dist-info/entry_points.txt,sha256=4fJNznnCPk2jY2ztTYAvEpLeYXcS3wDkgx2gAYdezPY,82
|
|
15
|
+
awslabs_finch_mcp_server-0.1.3.dist-info/licenses/LICENSE,sha256=UOZ1F5fFDe3XXvG4oNnkL1-Ecun7zpHzRxjp-XsMeAo,11324
|
|
16
|
+
awslabs_finch_mcp_server-0.1.3.dist-info/licenses/NOTICE,sha256=W4rmEHanXgUYNeoEh6oB-pfuI1RtX4XIvX067GmL-i0,92
|
|
17
|
+
awslabs_finch_mcp_server-0.1.3.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
awslabs/__init__.py,sha256=bfTactAnM5TLDj8DEa7bm8LM2Vq5MeYeTevjwbmnkR4,598
|
|
2
|
-
awslabs/finch_mcp_server/__init__.py,sha256=x5tDHoZMLCDVZzVBHKWcT2a5BIWpYqSvs4PdYTRjeek,613
|
|
3
|
-
awslabs/finch_mcp_server/consts.py,sha256=jzmhiSIq6_AkRtelWFBp3Wa8DE1m-RVWEsVNZtmHWGk,1040
|
|
4
|
-
awslabs/finch_mcp_server/models.py,sha256=LZ-KSea6dvLk_8eo6q3nYR0kT_l-Qqh7Ib0E5F1uyX0,678
|
|
5
|
-
awslabs/finch_mcp_server/server.py,sha256=jZt5e8ind0R9YzZVr9T2PkHlcya54Q1xI26MYt7HOSk,16783
|
|
6
|
-
awslabs/finch_mcp_server/utils/__init__.py,sha256=CWQ6u4iR80Z_gP2SxEMl4TIkrQTTeA_xj9Nc_29l5FE,689
|
|
7
|
-
awslabs/finch_mcp_server/utils/build.py,sha256=2uEZMrVZR5c-00LLzivWjGDAU1PouHpel5bFN0e11g4,4644
|
|
8
|
-
awslabs/finch_mcp_server/utils/common.py,sha256=GG0lU6rLvZmjLshzDcD_McejtQSEZaMK3AKjPm-XeHo,5609
|
|
9
|
-
awslabs/finch_mcp_server/utils/ecr.py,sha256=Ca7ncv8IhVnL3H-kDUZmxiWqZpNSs49ZCNffeRaFDC0,3251
|
|
10
|
-
awslabs/finch_mcp_server/utils/push.py,sha256=PNKEMhrf37ferdfxNjcBMdEn9Wbt_eES18HauLtiPf4,4064
|
|
11
|
-
awslabs/finch_mcp_server/utils/vm.py,sha256=3Zh95RWjU-59EmqKEvoRuza8sTGw9xaR6dcjxY_fOSE,15572
|
|
12
|
-
awslabs_finch_mcp_server-0.1.1.dist-info/METADATA,sha256=g--kJ7vhs0T6kDAQcXCZL9jcGV9Ph__EdfxNOOQvZ68,8578
|
|
13
|
-
awslabs_finch_mcp_server-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
14
|
-
awslabs_finch_mcp_server-0.1.1.dist-info/entry_points.txt,sha256=4fJNznnCPk2jY2ztTYAvEpLeYXcS3wDkgx2gAYdezPY,82
|
|
15
|
-
awslabs_finch_mcp_server-0.1.1.dist-info/licenses/LICENSE,sha256=UOZ1F5fFDe3XXvG4oNnkL1-Ecun7zpHzRxjp-XsMeAo,11324
|
|
16
|
-
awslabs_finch_mcp_server-0.1.1.dist-info/licenses/NOTICE,sha256=W4rmEHanXgUYNeoEh6oB-pfuI1RtX4XIvX067GmL-i0,92
|
|
17
|
-
awslabs_finch_mcp_server-0.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|