File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
src/amazon-sns-sqs-mcp-server/awslabs/amazon_sns_sqs_mcp_server Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 1919from awslabs .amazon_sns_sqs_mcp_server .sqs import register_sqs_tools
2020from 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
3031def 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+
6365if __name__ == '__main__' :
6466 main ()
You can’t perform that action at this time.
0 commit comments