UNPKG

@chinchillaenterprises/mcp-amplify

Version:

AWS Amplify MCP server with intelligent deployment automation, specialized logging suite, and recursive resource discovery

36 lines 1.31 kB
export const monitoringTools = [ { name: "amplify_get_environment_config", description: "All environment variables and stack outputs", inputSchema: { type: "object", properties: { appId: { type: "string", description: "Amplify app ID" }, branchName: { type: "string", description: "Branch name (auto-detect if not provided)" }, format: { type: "string", enum: ["json", "env", "summary"], description: "Output format" } }, required: ["appId"] } }, { name: "amplify_get_deployment_status", description: "Real-time deployment and health status overview", inputSchema: { type: "object", properties: { appId: { type: "string", description: "Amplify app ID" }, branchName: { type: "string", description: "Branch name (auto-detect if not provided)" }, includeHealthChecks: { type: "boolean", description: "Include health checks for all services" } }, required: ["appId"] } } ]; //# sourceMappingURL=monitoring.js.map