Skip to content
MCP-BridgeMCP-Bridge
Cloud Infrastructure

Amazon Lex Model Building Service MCP Config

<fullname>Amazon Lex Build-Time Actions</fullname> <p> Amazon Lex is an AWS service for building conversational voice and text interfaces. Use these actions to create, update, and delete conversational bots for new and existing client applications. </p>

Config URL

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

https://mcpbridge.org/config/amazonaws-com-lex-models.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-lex-models": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/amazonaws-com-lex-models"
      ],
      "env": {
        "AMAZON_LEX_MODEL_BUILDING_SERVICE_API_KEY": "your_amazon_lex_model_building_service_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

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

VS Code

Use with MCP extension

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

Configuration JSON

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

{
  "mcpServers": {
    "amazonaws-com-lex-models": {
      "command": "npx",
      "args": ["-y","@mcp/amazonaws-com-lex-models"],
      "env": {
      "AMAZON_LEX_MODEL_BUILDING_SERVICE_API_KEY": "your_amazon_lex_model_building_service_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-lex-models.json

Environment Variables

AMAZON_LEX_MODEL_BUILDING_SERVICE_API_KEY

Replace your_amazon_lex_model_building_service_api_key with your actual amazon lex model building service api key

Endpoints

POST/bots/{name}/versions

CreateBotVersion

POST/intents/{name}/versions

CreateIntentVersion

POST/slottypes/{name}/versions

CreateSlotTypeVersion

DELETE/bots/{name}

DeleteBot

GET/bots/{botName}/aliases/{name}

GetBotAlias

PUT/bots/{botName}/aliases/{name}

PutBotAlias

DELETE/bots/{botName}/aliases/{name}

DeleteBotAlias

GET/bots/{botName}/aliases/{aliasName}/channels/{name}

GetBotChannelAssociation

DELETE/bots/{botName}/aliases/{aliasName}/channels/{name}

DeleteBotChannelAssociation

DELETE/bots/{name}/versions/{version}

DeleteBotVersion