Skip to main content
Glama

Serverless MCP

by hteek
table.ts716 B
import { RemovalPolicy } from 'aws-cdk-lib'; import { AttributeType, BillingMode, Table } from 'aws-cdk-lib/aws-dynamodb'; import { Construct } from 'constructs'; export class DynamodbTable extends Table { constructor(scope: Construct, id: string) { super(scope, id, { billingMode: BillingMode.PAY_PER_REQUEST, removalPolicy: RemovalPolicy.RETAIN, pointInTimeRecoverySpecification: { pointInTimeRecoveryEnabled: true, }, partitionKey: { name: 'pk', type: AttributeType.STRING, }, sortKey: { name: 'sk', type: AttributeType.STRING, }, tableName: 'serverless-mcp', timeToLiveAttribute: 'expires', }); } }

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