Skip to main content
Glama

Serverless MCP

by hteek
certificate.ts672 B
import { DnsValidatedCertificate } from 'aws-cdk-lib/aws-certificatemanager'; import { IHostedZone } from 'aws-cdk-lib/aws-route53'; import { Construct } from 'constructs'; export interface BaseDnsValidatedCertificateProps { readonly domainName: string; readonly hostedZone: IHostedZone; } export class BaseDnsValidatedCertificate extends DnsValidatedCertificate { constructor( scope: Construct, id: string, props: BaseDnsValidatedCertificateProps ) { const { domainName, hostedZone } = props; super(scope, id, { domainName, hostedZone, region: 'us-east-1', subjectAlternativeNames: [`*.${domainName}`], }); } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hteek/serverless-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server