{"id":23313,"library":"awslabs-amazon-sns-sqs-mcp-server","title":"Amazon SNS SQS MCP Server","description":"A Model Context Protocol (MCP) server for Amazon SNS and SQS that provisions and manages messaging services. Version 2.0.18, requires Python >=3.10, maintained by AWS Labs.","status":"active","version":"2.0.18","language":"python","source_language":"en","source_url":"https://github.com/awslabs/mcp","tags":["mcp","aws","sns","sqs","amazon"],"install":[{"cmd":"pip install awslabs-amazon-sns-sqs-mcp-server","lang":"bash","label":"PyPI install"}],"dependencies":[{"reason":"MCP SDK for server implementation","package":"mcp","optional":false},{"reason":"AWS SDK for SNS/SQS API calls","package":"boto3","optional":false}],"imports":[{"note":"The server uses MCP SDK directly; no custom top-level module.","symbol":"mcp","correct":"import mcp"}],"quickstart":{"code":"import os\nimport boto3\nfrom mcp.server import Server\n\n# Example: start the MCP server with AWS credentials\nos.environ.setdefault('AWS_ACCESS_KEY_ID', 'your-access-key')\nos.environ.setdefault('AWS_SECRET_ACCESS_KEY', 'your-secret-key')\nos.environ.setdefault('AWS_DEFAULT_REGION', 'us-east-1')\n\n# The server is typically run via CLI: mcp-server-sns-sqs\n# Or programmatically: create and run an MCP server instance\n# from awslabs_amazon_sns_sqs_mcp_server import Server as SnsSqsServer\n# server = SnsSqsServer()\n# server.run()\nprint('Server configured. Use the CLI tool to start.')","lang":"python","description":"Basic configuration example; the package exposes a CLI command."},"warnings":[{"fix":"Run `pip show awslabs-amazon-sns-sqs-mcp-server` to see installed files, then import the correct module.","message":"The package name on PyPI includes 'awslabs-' prefix but the module import path may differ; check the installed package for the exact module name.","severity":"gotcha","affected_versions":"all"},{"fix":"Use `mcp-server-sns-sqs` CLI command instead of deprecated `sns-sqs-mcp`.","message":"Older versions (pre-2.0) may have used a different CLI entry point.","severity":"deprecated","affected_versions":"<2.0.0"},{"fix":"Check the README for updated programmatic usage; prefer CLI execution.","message":"Version 2.0 changed the server startup method; direct Python API may have breaking changes.","severity":"breaking","affected_versions":">=2.0.0"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"Install with `pip install awslabs-amazon-sns-sqs-mcp-server` and verify available modules via `python -c \"import awslabs_amazon_sns_sqs_mcp_server\"`.","cause":"Incorrect import path or package not installed.","error":"ModuleNotFoundError: No module named 'awslabs_amazon_sns_sqs_mcp_server'"},{"fix":"Set AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, and AWS_DEFAULT_REGION environment variables or configure ~/.aws/credentials.","cause":"AWS credentials not configured.","error":"Error: botocore.exceptions.NoCredentialsError: Unable to locate credentials"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}