Skip to content
MCP-BridgeMCP-Bridge
AI & ML

Amazon Polly MCP Config

<p>Amazon Polly is a web service that makes it easy to synthesize speech from text.</p> <p>The Amazon Polly service provides API operations for synthesizing high-quality speech from plain text and Speech Synthesis Markup Language (SSML), along with managing pronunciations lexicons that enable you to

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/amazonaws-com-polly.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "amazonaws-com-polly": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/amazonaws-com-polly"
      ],
      "env": {
        "AMAZON_POLLY_API_KEY": "your_amazon_polly_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "amazonaws-com-polly": {
      "url": "https://mcpbridge.org/config/amazonaws-com-polly.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "amazonaws-com-polly": {
      "url": "https://mcpbridge.org/config/amazonaws-com-polly.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/amazonaws-com-polly.json to fetch programmatically.

{
  "mcpServers": {
    "amazonaws-com-polly": {
      "command": "npx",
      "args": ["-y","@mcp/amazonaws-com-polly"],
      "env": {
      "AMAZON_POLLY_API_KEY": "your_amazon_polly_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/amazonaws-com-polly.json

Environment Variables

AMAZON_POLLY_API_KEY

Replace your_amazon_polly_api_key with your actual amazon polly api key

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

GET/v1/lexicons

ListLexicons

GET/v1/synthesisTasks

ListSpeechSynthesisTasks

POST/v1/synthesisTasks

StartSpeechSynthesisTask

POST/v1/speech

SynthesizeSpeech