Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
197 lines
6.4 KiB
Text
197 lines
6.4 KiB
Text
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
const attributes = require('./attributes.js');
|
|
const sessionManagement = require('./sessionManagement.js');
|
|
const validation = require('./validation.js');
|
|
|
|
/**
|
|
* Session and party info extraction functions for MCP server instrumentation
|
|
*
|
|
* Handles extraction of client/server info and session data from MCP messages.
|
|
*/
|
|
|
|
|
|
/**
|
|
* Extracts and validates PartyInfo from an unknown object
|
|
* @param obj - Unknown object that might contain party info
|
|
* @returns Validated PartyInfo object with only string properties
|
|
*/
|
|
function extractPartyInfo(obj) {
|
|
const partyInfo = {};
|
|
|
|
if (validation.isValidContentItem(obj)) {
|
|
if (typeof obj.name === 'string') {
|
|
partyInfo.name = obj.name;
|
|
}
|
|
if (typeof obj.title === 'string') {
|
|
partyInfo.title = obj.title;
|
|
}
|
|
if (typeof obj.version === 'string') {
|
|
partyInfo.version = obj.version;
|
|
}
|
|
}
|
|
|
|
return partyInfo;
|
|
}
|
|
|
|
/**
|
|
* Extracts session data from "initialize" requests
|
|
* @param request - JSON-RPC "initialize" request containing client info and protocol version
|
|
* @returns Session data extracted from request parameters including protocol version and client info
|
|
*/
|
|
function extractSessionDataFromInitializeRequest(request) {
|
|
const sessionData = {};
|
|
if (validation.isValidContentItem(request.params)) {
|
|
if (typeof request.params.protocolVersion === 'string') {
|
|
sessionData.protocolVersion = request.params.protocolVersion;
|
|
}
|
|
if (request.params.clientInfo) {
|
|
sessionData.clientInfo = extractPartyInfo(request.params.clientInfo);
|
|
}
|
|
}
|
|
return sessionData;
|
|
}
|
|
|
|
/**
|
|
* Extracts session data from "initialize" response
|
|
* @param result - "initialize" response result containing server info and protocol version
|
|
* @returns Partial session data extracted from response including protocol version and server info
|
|
*/
|
|
function extractSessionDataFromInitializeResponse(result) {
|
|
const sessionData = {};
|
|
if (validation.isValidContentItem(result)) {
|
|
if (typeof result.protocolVersion === 'string') {
|
|
sessionData.protocolVersion = result.protocolVersion;
|
|
}
|
|
if (result.serverInfo) {
|
|
sessionData.serverInfo = extractPartyInfo(result.serverInfo);
|
|
}
|
|
}
|
|
return sessionData;
|
|
}
|
|
|
|
/**
|
|
* Build client attributes from stored client info
|
|
* @param transport - MCP transport instance
|
|
* @returns Client attributes for span instrumentation
|
|
*/
|
|
function getClientAttributes(transport) {
|
|
const clientInfo = sessionManagement.getClientInfoForTransport(transport);
|
|
const attributes = {};
|
|
|
|
if (clientInfo?.name) {
|
|
attributes['mcp.client.name'] = clientInfo.name;
|
|
}
|
|
if (clientInfo?.title) {
|
|
attributes['mcp.client.title'] = clientInfo.title;
|
|
}
|
|
if (clientInfo?.version) {
|
|
attributes['mcp.client.version'] = clientInfo.version;
|
|
}
|
|
|
|
return attributes;
|
|
}
|
|
|
|
/**
|
|
* Build server attributes from stored server info
|
|
* @param transport - MCP transport instance
|
|
* @returns Server attributes for span instrumentation
|
|
*/
|
|
function getServerAttributes(transport) {
|
|
const serverInfo = sessionManagement.getSessionDataForTransport(transport)?.serverInfo;
|
|
const attributes$1 = {};
|
|
|
|
if (serverInfo?.name) {
|
|
attributes$1[attributes.MCP_SERVER_NAME_ATTRIBUTE] = serverInfo.name;
|
|
}
|
|
if (serverInfo?.title) {
|
|
attributes$1[attributes.MCP_SERVER_TITLE_ATTRIBUTE] = serverInfo.title;
|
|
}
|
|
if (serverInfo?.version) {
|
|
attributes$1[attributes.MCP_SERVER_VERSION_ATTRIBUTE] = serverInfo.version;
|
|
}
|
|
|
|
return attributes$1;
|
|
}
|
|
|
|
/**
|
|
* Extracts client connection info from extra handler data
|
|
* @param extra - Extra handler data containing connection info
|
|
* @returns Client address and port information
|
|
*/
|
|
function extractClientInfo(extra)
|
|
|
|
{
|
|
return {
|
|
address:
|
|
extra?.requestInfo?.remoteAddress ||
|
|
extra?.clientAddress ||
|
|
extra?.request?.ip ||
|
|
extra?.request?.connection?.remoteAddress,
|
|
port: extra?.requestInfo?.remotePort || extra?.clientPort || extra?.request?.connection?.remotePort,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Extracts transport types based on transport constructor name
|
|
* @param transport - MCP transport instance
|
|
* @returns Transport type mapping for span attributes
|
|
*/
|
|
function getTransportTypes(transport) {
|
|
const transportName = transport.constructor?.name?.toLowerCase() || '';
|
|
|
|
if (transportName.includes('stdio')) {
|
|
return { mcpTransport: 'stdio', networkTransport: 'pipe' };
|
|
}
|
|
|
|
if (transportName.includes('streamablehttp') || transportName.includes('streamable')) {
|
|
return { mcpTransport: 'http', networkTransport: 'tcp' };
|
|
}
|
|
|
|
if (transportName.includes('sse')) {
|
|
return { mcpTransport: 'sse', networkTransport: 'tcp' };
|
|
}
|
|
|
|
return { mcpTransport: 'unknown', networkTransport: 'unknown' };
|
|
}
|
|
|
|
/**
|
|
* Build transport and network attributes
|
|
* @param transport - MCP transport instance
|
|
* @param extra - Optional extra handler data
|
|
* @returns Transport attributes for span instrumentation
|
|
*/
|
|
function buildTransportAttributes(
|
|
transport,
|
|
extra,
|
|
) {
|
|
const sessionId = transport.sessionId;
|
|
const clientInfo = extra ? extractClientInfo(extra) : {};
|
|
const { mcpTransport, networkTransport } = getTransportTypes(transport);
|
|
const clientAttributes = getClientAttributes(transport);
|
|
const serverAttributes = getServerAttributes(transport);
|
|
const protocolVersion = sessionManagement.getProtocolVersionForTransport(transport);
|
|
|
|
const attributes$1 = {
|
|
...(sessionId && { [attributes.MCP_SESSION_ID_ATTRIBUTE]: sessionId }),
|
|
...(clientInfo.address && { [attributes.CLIENT_ADDRESS_ATTRIBUTE]: clientInfo.address }),
|
|
...(clientInfo.port && { [attributes.CLIENT_PORT_ATTRIBUTE]: clientInfo.port }),
|
|
[attributes.MCP_TRANSPORT_ATTRIBUTE]: mcpTransport,
|
|
[attributes.NETWORK_TRANSPORT_ATTRIBUTE]: networkTransport,
|
|
[attributes.NETWORK_PROTOCOL_VERSION_ATTRIBUTE]: '2.0',
|
|
...(protocolVersion && { [attributes.MCP_PROTOCOL_VERSION_ATTRIBUTE]: protocolVersion }),
|
|
...clientAttributes,
|
|
...serverAttributes,
|
|
};
|
|
|
|
return attributes$1;
|
|
}
|
|
|
|
exports.buildTransportAttributes = buildTransportAttributes;
|
|
exports.extractClientInfo = extractClientInfo;
|
|
exports.extractSessionDataFromInitializeRequest = extractSessionDataFromInitializeRequest;
|
|
exports.extractSessionDataFromInitializeResponse = extractSessionDataFromInitializeResponse;
|
|
exports.getClientAttributes = getClientAttributes;
|
|
exports.getServerAttributes = getServerAttributes;
|
|
exports.getTransportTypes = getTransportTypes;
|
|
//# sourceMappingURL=sessionExtraction.js.map
|