Skip to content
MCP-Bridge
Cloud Infrastructure

Amazon Elastic Transcoder Claude Desktop Config

Add the Amazon Elastic Transcoder MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "amazonaws-com-elastictranscoder": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/amazonaws-com-elastictranscoder"
      ],
      "env": {
        "AMAZON_ELASTIC_TRANSCODER_API_KEY": "your_amazon_elastic_transcoder_api_key"
      }
    }
  }
}

Environment Variables

AMAZON_ELASTIC_TRANSCODER_API_KEY

Replace your_amazon_elastic_transcoder_api_key with your actual amazon elastic transcoder api key

Endpoints

GET/2012-09-25/jobs/{Id}

ReadJob

DELETE/2012-09-25/jobs/{Id}

CancelJob

POST/2012-09-25/jobs

CreateJob

GET/2012-09-25/pipelines

ListPipelines

POST/2012-09-25/pipelines

CreatePipeline

GET/2012-09-25/presets

ListPresets

POST/2012-09-25/presets

CreatePreset

GET/2012-09-25/pipelines/{Id}

ReadPipeline

PUT/2012-09-25/pipelines/{Id}

UpdatePipeline

DELETE/2012-09-25/pipelines/{Id}

DeletePipeline