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
tracer.ts•303 B
import { Tracer } from '@aws-lambda-powertools/tracer';
import { serviceName } from './constants.js';
/**
* Create tracer instance with centralized configuration so that
* all traces have the same service name as an annotation.
*/
const tracer = new Tracer({
serviceName,
});
export { tracer };