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
metrics.ts•407 B
import { Metrics } from '@aws-lambda-powertools/metrics';
import { defaultValues, metricsNamespace, serviceName } from './constants.js';
/**
* Create metrics instance with centralized configuration so that
* all functions have the same dimensions and namespace.
*/
const metrics = new Metrics({
serviceName,
namespace: metricsNamespace,
defaultDimensions: defaultValues,
});
export { metrics };