Skip to content
AI & MLAuto-generatedScore: 46

Amazon Polly MCP Server

Amazon Polly is a cloud-based text-to-speech (TTS) service provided by Amazon Web Services (AWS) that converts written text into lifelike spoken audio.

Quick Start Summary

The Amazon Polly MCP server is a Model Context Protocol bridge that connects AI assistants — including Claude Desktop, Cursor, Windsurf, and VS Code Copilot — to the Amazon Polly API through natural language. It exposes 9 API endpoints as callable tools, such as GetLexicon, PutLexicon, DeleteLexicon, and more. No authentication is required — setup takes approximately 30 seconds. The server uses STDIO transport and can be installed by running npx -y @mcp/amazonaws-com-polly. This integration is sourced from the auto Amazon Polly OpenAPI specification (v2016-06-10) and has a quality score of 46/99 (fair documentation coverage).

9Endpointstools mapped
NoneAuthopen access
46/99Qualityfair
~30 secSetupno auth

Server Details

Category
AI & ML
Authentication
None
Endpoints
9 operations
Transport
STDIO
Spec Version
v2016-06-10
Install Command
npx -y @mcp/amazonaws-com-polly

Environment Variables

AMAZON_POLLY_API_KEY

Example: your_amazon_polly_api_key

Top Endpoints

GET
/v1/lexicons/{LexiconName}

GetLexicon

PUT
/v1/lexicons/{LexiconName}

PutLexicon

DELETE
/v1/lexicons/{LexiconName}

DeleteLexicon

GET
/v1/voices

DescribeVoices

GET
/v1/synthesisTasks/{TaskId}

GetSpeechSynthesisTask

Own this API?

Verify ownership of this listing to control the description, configuration details, and documentation links. Choose between free manual verification or instant premium placement.

Option 1: Free Verification

Slow manual review. Requires creating a GitHub issue with verified documentation or domain verification.

  • • Verified badge on page
  • • Standard search sorting
  • • 2-3 business days review
Start Free Claim →
Instant & Boosted

Option 2: Featured Upgrade($9/mo)

Instant verification plus premium styling, featured badges, and directory placement boost.

  • • ★ Featured star & amber highlight border
  • • Top of directory search placement
  • • Instant activation via claim token

📖 Detailed MCP Integration Guide

A technical breakdown of capabilities, agent workflows, and security/configuration best practices.

Capabilities & Use Cases
Amazon Polly is a cloud-based text-to-speech (TTS) service provided by Amazon Web Services (AWS) that converts written text into lifelike spoken audio. It utilizes advanced deep learning technologies to generate natural-sounding human speech in dozens of languages and across a wide range of vocal styles and prosodies. Core capabilities include synthesizing speech from plain text or SSML (Speech Synthesis Markup Language), which allows for fine-grained control over pronunciation, speaking rate, pitch, and emphasis. The service is designed for both enterprise and consumer use cases, enabling applications to enhance accessibility for visually impaired users, create dynamic content for newsreading and e-learning platforms, power interactive voice response (IVR) systems, and deliver hands-free experiences in automotive and smart home environments. Its scalability and pay-per-use model make it suitable for projects ranging from mobile app prototypes to large-scale content production pipelines.
🤖AI Agent Value
When exposed as tools to an AI coding assistant via the Model Context Protocol (MCP), the Amazon Polly API gains a powerful new dimension of utility. An AI agent, such as Claude Desktop or Cursor, equipped with these tools can directly interact with Polly's voice synthesis and lexicon management services. This integration allows the AI to programmatically generate audio files, query available voices for a specific language or gender, manage custom pronunciation lexicons for proper nouns or technical terms, and monitor the status of long-running batch synthesis tasks. The value lies in automating the selection, configuration, and execution of speech synthesis within a developer's workflow, eliminating manual console navigation or the need to write boilerplate client code, thereby accelerating the development of voice-enabled features.
💬Example Workflows
A developer can instruct the AI agent to perform a variety of dynamic, context-aware tasks. For example, a prompt such as "Find me all available neural English male voices and synthesize this product description into an MP3 file using the most natural-sounding one" would trigger a sequence of API calls: first, a GET /v1/voices request filtered by language code and gender; second, an analysis of the response to select an optimal voice; and third, a POST /v1/speech request with the appropriate parameters to generate the audio. Another workflow could involve managing specialized terminology: "Create a new lexicon named 'internal_terms' that correctly pronounces our product codenames 'Astra' and 'Nebula', then use it to synthesize the latest press release." Here, the AI would use PUT /v1/lexicons/{LexiconName} to create the resource and subsequently include the Lexicons parameter in the synthesis call. It could also handle batch operations by initiating a POST /v1/synthesisTasks for a large document and later polling the GET /v1/synthesisTasks/{TaskId} endpoint to report on progress or retrieve the S3 location of the final audio files.
🛡️Security & Auth
Critical security and configuration considerations are paramount when setting up this server. Authentication must be handled via AWS Identity and Access Management (IAM), not through a generic "none" method. The MCP server configuration should supply an IAM user or role with carefully scoped access policies. Adhering to the principle of least privilege is essential; permissions should be granted only for specific, necessary actions (e.g., "polly:SynthesizeSpeech" for a given region) rather than broad administrative rights. Developers should avoid embedding long-term AWS credentials in client-side code and instead use environment variables or secure secret management systems. Furthermore, network security should be enforced by restricting API calls to known IP ranges if possible, and monitoring should be enabled via AWS CloudTrail to audit all synthesis and lexicon management activity for compliance and cost tracking purposes.

Similar APIs

Other APIs in the AI & ML category.

OpenAI API

Generate text, images, and embeddings. Integrate GPT models and DALL-E into your AI agent.

API Key

Anthropic API

Access Claude AI models for text generation, analysis, and code assistance through the Anthropic API.

API Key

OpenAI API

The OpenAI API, developed and maintained by OpenAI, provides programmatic access to a suite of advanced artificial intelligence capabilities centered around large language models (LLMs). Its core functions enable developers to integrate state-of-the-art natural language processing and generation into applications. Key endpoints support text generation (completions, chat completions), content transformation (edits, classifications), semantic analysis (embeddings), and multimodal processing (audio transcriptions and translations). The API serves a broad spectrum of users, from individual developers and startups building conversational agents or content tools to large enterprises automating complex workflows, enhancing customer support, conducting sentiment analysis on large text corpora, or generating synthetic data for training. Use cases span consumer applications like intelligent writing assistants and enterprise-grade solutions for automated document summarization, code generation, and multilingual communication platforms.

Amazon CodeGuru Profiler

Amazon CodeGuru Profiler is an advanced application performance profiling service provided by Amazon Web Services (AWS). It continuously collects runtime performance data—such as CPU utilization, memory allocation, and thread contention—from live production applications, then analyzes this data using machine learning algorithms to pinpoint performance bottlenecks and inefficiencies. The API serves as the programmatic interface for managing the profiling lifecycle, allowing developers to create and configure profiling groups, adjust agent settings, retrieve performance metrics and findings, and manage notification configurations. Enterprise use cases include optimizing microservice latency in high-traffic systems, reducing cloud compute costs by identifying inefficient code paths, and maintaining application health in continuous deployment pipelines where performance regressions must be detected early. For development teams, it provides actionable insights to guide code optimization efforts based on real-world usage rather than synthetic benchmarks.

Related MCP Server Integrations

OpenAI API MCP Setup

Generate text, images, and embeddings. Integrate GPT models and DALL-E into your AI agent.

AI & MLConfigure →

Anthropic API MCP Setup

Access Claude AI models for text generation, analysis, and code assistance through the Anthropic API.

AI & MLConfigure →

OpenAI API MCP Setup

The OpenAI API, developed and maintained by OpenAI, provides programmatic access to a suite of advanced artificial intelligence capabilities centered around large language models (LLMs). Its core functions enable developers to integrate state-of-the-art natural language processing and generation into applications. Key endpoints support text generation (completions, chat completions), content transformation (edits, classifications), semantic analysis (embeddings), and multimodal processing (audio transcriptions and translations). The API serves a broad spectrum of users, from individual developers and startups building conversational agents or content tools to large enterprises automating complex workflows, enhancing customer support, conducting sentiment analysis on large text corpora, or generating synthetic data for training. Use cases span consumer applications like intelligent writing assistants and enterprise-grade solutions for automated document summarization, code generation, and multilingual communication platforms.

AI & MLConfigure →

Amazon CodeGuru Profiler MCP Setup

Amazon CodeGuru Profiler is an advanced application performance profiling service provided by Amazon Web Services (AWS). It continuously collects runtime performance data—such as CPU utilization, memory allocation, and thread contention—from live production applications, then analyzes this data using machine learning algorithms to pinpoint performance bottlenecks and inefficiencies. The API serves as the programmatic interface for managing the profiling lifecycle, allowing developers to create and configure profiling groups, adjust agent settings, retrieve performance metrics and findings, and manage notification configurations. Enterprise use cases include optimizing microservice latency in high-traffic systems, reducing cloud compute costs by identifying inefficient code paths, and maintaining application health in continuous deployment pipelines where performance regressions must be detected early. For development teams, it provides actionable insights to guide code optimization efforts based on real-world usage rather than synthetic benchmarks.

AI & MLConfigure →

Amazon CodeGuru Reviewer MCP Setup

The Amazon CodeGuru Reviewer API is a powerful programmatic interface to Amazon's automated code analysis service, designed to elevate code quality and developer productivity. This API exposes the core functionalities of a managed service that combines deep static analysis, machine learning models trained on vast code repositories, and pattern recognition to identify complex defects, security vulnerabilities, and non-idiomatic code patterns that are often missed in manual reviews. Specifically targeting Java and Python codebases, CodeGuru Reviewer analyzes code changes submitted through integrated repositories like AWS CodeCommit, GitHub, or Bitbucket, and generates actionable recommendations. Its primary enterprise use cases are integrated into continuous integration and continuous delivery (CI/CD) pipelines for automated, mandatory code quality gates; conducting security and compliance audits on critical application code; and providing scalable, consistent feedback during the pull request process, thereby reducing the burden on human reviewers and accelerating safe code deployments.

AI & MLConfigure →