awslabs.nova-canvas-mcp-server 0.2.8__tar.gz → 1.0.1__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.
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/CHANGELOG.md +6 -5
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/Dockerfile +11 -8
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/PKG-INFO +3 -3
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/README.md +2 -2
- awslabs_nova_canvas_mcp_server-1.0.1/awslabs/__init__.py +15 -0
- awslabs_nova_canvas_mcp_server-1.0.1/awslabs/nova_canvas_mcp_server/__init__.py +16 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/awslabs/nova_canvas_mcp_server/consts.py +9 -6
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/awslabs/nova_canvas_mcp_server/models.py +9 -6
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/awslabs/nova_canvas_mcp_server/novacanvas.py +9 -6
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/awslabs/nova_canvas_mcp_server/server.py +10 -25
- awslabs_nova_canvas_mcp_server-1.0.1/docker-healthcheck.sh +26 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/pyproject.toml +1 -1
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/run_tests.sh +15 -0
- awslabs_nova_canvas_mcp_server-1.0.1/tests/__init__.py +14 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/conftest.py +9 -6
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/test_models.py +9 -6
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/test_novacanvas.py +9 -6
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/test_server.py +9 -6
- awslabs_nova_canvas_mcp_server-0.2.8/awslabs/__init__.py +0 -12
- awslabs_nova_canvas_mcp_server-0.2.8/awslabs/nova_canvas_mcp_server/__init__.py +0 -13
- awslabs_nova_canvas_mcp_server-0.2.8/docker-healthcheck.sh +0 -12
- awslabs_nova_canvas_mcp_server-0.2.8/tests/__init__.py +0 -11
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/.gitignore +0 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/.pre-commit-config.yaml +0 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/.python-version +0 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/LICENSE +0 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/NOTICE +0 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/.gitignore +0 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/README.md +0 -0
- {awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/uv.lock +0 -0
|
@@ -5,23 +5,24 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
##
|
|
8
|
+
## [1.0.0] - 2025-05-26
|
|
9
9
|
|
|
10
|
-
###
|
|
10
|
+
### Removed
|
|
11
11
|
|
|
12
|
-
-
|
|
12
|
+
- **BREAKING CHANGE:** Server Sent Events (SSE) support has been removed in accordance with the Model Context Protocol specification's [backwards compatibility guidelines](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#backwards-compatibility)
|
|
13
|
+
- This change prepares for future support of [Streamable HTTP](https://modelcontextprotocol.io/specification/draft/basic/transports#streamable-http) transport
|
|
13
14
|
|
|
14
15
|
## v0.1.5 (2025-03-30)
|
|
15
16
|
|
|
16
17
|
### Fix
|
|
17
18
|
|
|
18
|
-
-
|
|
19
|
+
- **version**
|
|
19
20
|
|
|
20
21
|
## v0.1.4 (2025-03-30)
|
|
21
22
|
|
|
22
23
|
### Fix
|
|
23
24
|
|
|
24
|
-
-
|
|
25
|
+
- **version**
|
|
25
26
|
|
|
26
27
|
## v0.1.3 (2025-03-30)
|
|
27
28
|
|
|
@@ -1,16 +1,19 @@
|
|
|
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
|
#FROM public.ecr.aws/sam/build-python3.10:1.137.1-20250411084548
|
|
13
|
-
FROM public.ecr.aws/sam/build-python3.10@sha256:
|
|
16
|
+
FROM public.ecr.aws/sam/build-python3.10@sha256:e78695db10ca8cb129e59e30f7dc9789b0dbd0181dba195d68419c72bac51ac1 AS uv
|
|
14
17
|
|
|
15
18
|
# Install the project into `/app`
|
|
16
19
|
WORKDIR /app
|
|
@@ -44,7 +47,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
|
|
|
44
47
|
# Make the directory just in case it doesn't exist
|
|
45
48
|
RUN mkdir -p /root/.local
|
|
46
49
|
|
|
47
|
-
FROM public.ecr.aws/sam/build-python3.10@sha256:
|
|
50
|
+
FROM public.ecr.aws/sam/build-python3.10@sha256:e78695db10ca8cb129e59e30f7dc9789b0dbd0181dba195d68419c72bac51ac1
|
|
48
51
|
|
|
49
52
|
# Place executables in the environment at the front of the path and include other binaries
|
|
50
53
|
ENV PATH="/app/.venv/bin:$PATH:/usr/sbin"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: awslabs.nova-canvas-mcp-server
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: An AWS Labs Model Context Protocol (MCP) server for Amazon Nova Canvas
|
|
5
5
|
Project-URL: Homepage, https://awslabs.github.io/mcp/
|
|
6
6
|
Project-URL: Documentation, https://awslabs.github.io/mcp/servers/nova-mcp-server/
|
|
@@ -91,10 +91,10 @@ Here are some ways you can work with MCP across AWS, and we'll be adding support
|
|
|
91
91
|
}
|
|
92
92
|
```
|
|
93
93
|
|
|
94
|
-
or docker after a
|
|
94
|
+
or docker after a successful `docker build -t awslabs/nova-canvas-mcp-server .`:
|
|
95
95
|
|
|
96
96
|
```file
|
|
97
|
-
#
|
|
97
|
+
# fictitious `.env` file with AWS temporary credentials
|
|
98
98
|
AWS_ACCESS_KEY_ID=ASIAIOSFODNN7EXAMPLE
|
|
99
99
|
AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
|
|
100
100
|
AWS_SESSION_TOKEN=AQoEXAMPLEH4aoAH0gNCAPy...truncated...zrkuWJOgQs8IZZaIv2BXIa2R4Olgk
|
|
@@ -58,10 +58,10 @@ Here are some ways you can work with MCP across AWS, and we'll be adding support
|
|
|
58
58
|
}
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
-
or docker after a
|
|
61
|
+
or docker after a successful `docker build -t awslabs/nova-canvas-mcp-server .`:
|
|
62
62
|
|
|
63
63
|
```file
|
|
64
|
-
#
|
|
64
|
+
# fictitious `.env` file with AWS temporary credentials
|
|
65
65
|
AWS_ACCESS_KEY_ID=ASIAIOSFODNN7EXAMPLE
|
|
66
66
|
AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
|
|
67
67
|
AWS_SESSION_TOKEN=AQoEXAMPLEH4aoAH0gNCAPy...truncated...zrkuWJOgQs8IZZaIv2BXIa2R4Olgk
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
# This file is part of the awslabs namespace.
|
|
15
|
+
# It is intentionally minimal to support PEP 420 namespace packages.
|
|
@@ -0,0 +1,16 @@
|
|
|
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
|
+
"""awslabs.nova-canvas-mcp-server"""
|
|
15
|
+
|
|
16
|
+
__version__ = '0.1.6'
|
|
@@ -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
|
# Constants
|
|
12
15
|
NOVA_CANVAS_MODEL_ID = 'amazon.nova-canvas-v1:0'
|
|
13
16
|
DEFAULT_WIDTH = 1024
|
|
@@ -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
|
"""Pydantic models for Amazon Nova Canvas image generation."""
|
|
12
15
|
|
|
13
16
|
import random
|
|
@@ -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
|
"""Amazon Nova Canvas API interaction module.
|
|
12
15
|
|
|
13
16
|
This module provides functions for generating images using Amazon Nova Canvas
|
|
@@ -1,16 +1,18 @@
|
|
|
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
|
"""Nova Canvas MCP Server implementation."""
|
|
12
15
|
|
|
13
|
-
import argparse
|
|
14
16
|
import boto3
|
|
15
17
|
import os
|
|
16
18
|
import sys
|
|
@@ -316,24 +318,7 @@ async def mcp_generate_image_with_colors(
|
|
|
316
318
|
def main():
|
|
317
319
|
"""Run the MCP server with CLI argument support."""
|
|
318
320
|
logger.info('Starting nova-canvas-mcp-server MCP server')
|
|
319
|
-
|
|
320
|
-
parser = argparse.ArgumentParser(
|
|
321
|
-
description='MCP server for generating images using Amazon Nova Canvas'
|
|
322
|
-
)
|
|
323
|
-
parser.add_argument('--sse', action='store_true', help='Use SSE transport')
|
|
324
|
-
parser.add_argument('--port', type=int, default=8888, help='Port to run the server on')
|
|
325
|
-
|
|
326
|
-
args = parser.parse_args()
|
|
327
|
-
logger.debug(f'Parsed arguments: sse={args.sse}, port={args.port}')
|
|
328
|
-
|
|
329
|
-
# Run server with appropriate transport
|
|
330
|
-
if args.sse:
|
|
331
|
-
logger.info(f'Using SSE transport on port {args.port}')
|
|
332
|
-
mcp.settings.port = args.port
|
|
333
|
-
mcp.run(transport='sse')
|
|
334
|
-
else:
|
|
335
|
-
logger.info('Using standard stdio transport')
|
|
336
|
-
mcp.run()
|
|
321
|
+
mcp.run()
|
|
337
322
|
|
|
338
323
|
|
|
339
324
|
if __name__ == '__main__':
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
17
|
+
if [ "$(lsof +c 0 -p 1 | grep -e "^awslabs\..*\s1\s.*\sunix\s.*socket$" | wc -l)" -ne "0" ]; then
|
|
18
|
+
echo -n "$(lsof +c 0 -p 1 | grep -e "^awslabs\..*\s1\s.*\sunix\s.*socket$" | wc -l) awslabs.* streams found";
|
|
19
|
+
exit 0;
|
|
20
|
+
else
|
|
21
|
+
echo -n "Zero awslabs.* streams found";
|
|
22
|
+
exit 1;
|
|
23
|
+
fi;
|
|
24
|
+
|
|
25
|
+
echo -n "Never should reach here";
|
|
26
|
+
exit 99;
|
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
4
|
+
#
|
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
# you may not use this file except in compliance with the License.
|
|
7
|
+
# You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
# See the License for the specific language governing permissions and
|
|
15
|
+
# limitations under the License.
|
|
16
|
+
|
|
2
17
|
# Script to run the nova-canvas-mcp-server tests
|
|
3
18
|
|
|
4
19
|
# Set the Python path to include the current directory and the parent directory
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
"""Tests for the nova-canvas-mcp-server."""
|
{awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/conftest.py
RENAMED
|
@@ -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
|
"""Test fixtures for the nova-canvas-mcp-server tests."""
|
|
12
15
|
|
|
13
16
|
import base64
|
{awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/test_models.py
RENAMED
|
@@ -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
|
"""Tests for the models module of the nova-canvas-mcp-server."""
|
|
12
15
|
|
|
13
16
|
import pytest
|
|
@@ -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
|
"""Tests for the novacanvas module of the nova-canvas-mcp-server."""
|
|
12
15
|
|
|
13
16
|
import base64
|
{awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/test_server.py
RENAMED
|
@@ -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
|
"""Tests for the server module of the nova-canvas-mcp-server."""
|
|
12
15
|
|
|
13
16
|
import pytest
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
|
|
4
|
-
# with the License. A copy of the License is located at
|
|
5
|
-
#
|
|
6
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
#
|
|
8
|
-
# or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
|
|
9
|
-
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
|
|
10
|
-
# and limitations under the License.
|
|
11
|
-
# This file is part of the awslabs namespace.
|
|
12
|
-
# It is intentionally minimal to support PEP 420 namespace packages.
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
|
|
4
|
-
# with the License. A copy of the License is located at
|
|
5
|
-
#
|
|
6
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
#
|
|
8
|
-
# or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
|
|
9
|
-
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
|
|
10
|
-
# and limitations under the License.
|
|
11
|
-
"""awslabs.nova-canvas-mcp-server"""
|
|
12
|
-
|
|
13
|
-
__version__ = '0.1.6'
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
|
|
3
|
-
if [ "$(lsof +c 0 -p 1 | grep -e "^awslabs\..*\s1\s.*\sunix\s.*socket$" | wc -l)" -ne "0" ]; then
|
|
4
|
-
echo -n "$(lsof +c 0 -p 1 | grep -e "^awslabs\..*\s1\s.*\sunix\s.*socket$" | wc -l) awslabs.* streams found";
|
|
5
|
-
exit 0;
|
|
6
|
-
else
|
|
7
|
-
echo -n "Zero awslabs.* streams found";
|
|
8
|
-
exit 1;
|
|
9
|
-
fi;
|
|
10
|
-
|
|
11
|
-
echo -n "Never should reach here";
|
|
12
|
-
exit 99;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
-
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
|
|
4
|
-
# with the License. A copy of the License is located at
|
|
5
|
-
#
|
|
6
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
-
#
|
|
8
|
-
# or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
|
|
9
|
-
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
|
|
10
|
-
# and limitations under the License.
|
|
11
|
-
"""Tests for the nova-canvas-mcp-server."""
|
|
File without changes
|
|
File without changes
|
{awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/.python-version
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/.gitignore
RENAMED
|
File without changes
|
{awslabs_nova_canvas_mcp_server-0.2.8 → awslabs_nova_canvas_mcp_server-1.0.1}/tests/README.md
RENAMED
|
File without changes
|
|
File without changes
|