AWS App Mesh Claude Desktop Config
Add the AWS App Mesh MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"amazonaws-com-appmesh": {
"command": "npx",
"args": [
"-y",
"@mcp/amazonaws-com-appmesh"
],
"env": {
"AWS_APP_MESH_API_KEY": "your_aws_app_mesh_api_key"
}
}
}
}Environment Variables
AWS_APP_MESH_API_KEYReplace your_aws_app_mesh_api_key with your actual aws app mesh api key
Endpoints
GET
/meshesListMeshes
PUT
/meshesCreateMesh
GET
/meshes/{meshName}/virtualRouter/{virtualRouterName}/routesListRoutes
PUT
/meshes/{meshName}/virtualRouter/{virtualRouterName}/routesCreateRoute
GET
/meshes/{meshName}/virtualNodesListVirtualNodes
PUT
/meshes/{meshName}/virtualNodesCreateVirtualNode
GET
/meshes/{meshName}/virtualRoutersListVirtualRouters
PUT
/meshes/{meshName}/virtualRoutersCreateVirtualRouter
GET
/meshes/{meshName}DescribeMesh
DELETE
/meshes/{meshName}DeleteMesh