Skip to content

Commit cf658b2

Browse files
fix: Update file format based on PR failed checks
1 parent 9503eed commit cf658b2

File tree

1 file changed

+8
-6
lines changed
  • src/amazon-sns-sqs-mcp-server/awslabs/amazon_sns_sqs_mcp_server

1 file changed

+8
-6
lines changed

src/amazon-sns-sqs-mcp-server/awslabs/amazon_sns_sqs_mcp_server/server.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,21 @@
1919
from awslabs.amazon_sns_sqs_mcp_server.sqs import register_sqs_tools
2020
from mcp.server.fastmcp import FastMCP
2121

22+
2223
# Define server instructions and dependencies
23-
SERVER_INSTRUCTIONS = """Manage Amazon SNS topics, subscriptions, and Amazon SQS queues for messaging."""
24+
SERVER_INSTRUCTIONS = (
25+
"""Manage Amazon SNS topics, subscriptions, and Amazon SQS queues for messaging."""
26+
)
27+
28+
SERVER_DEPENDENCIES = ['pydantic', 'boto3']
2429

25-
SERVER_DEPENDENCIES = [
26-
'pydantic',
27-
'boto3'
28-
]
2930

3031
def create_server():
3132
"""Create and configure the MCP server instance."""
3233
return FastMCP(
3334
'awslabs.amazon-sns-sqs-mcp-server',
3435
instructions=SERVER_INSTRUCTIONS,
35-
dependencies=SERVER_DEPENDENCIES
36+
dependencies=SERVER_DEPENDENCIES,
3637
)
3738

3839

@@ -60,5 +61,6 @@ def main():
6061

6162
mcp.run()
6263

64+
6365
if __name__ == '__main__':
6466
main()

0 commit comments

Comments
 (0)