@sentry/core
Version:
Base implementation for all Sentry JavaScript SDKs
126 lines (100 loc) • 3.74 kB
JavaScript
import { MCP_TOOL_RESULT_IS_ERROR_ATTRIBUTE, MCP_PROMPT_RESULT_DESCRIPTION_ATTRIBUTE, MCP_PROMPT_RESULT_MESSAGE_COUNT_ATTRIBUTE, MCP_TOOL_RESULT_CONTENT_COUNT_ATTRIBUTE } from './attributes.js';
import { isValidContentItem } from './validation.js';
/**
* Result extraction functions for MCP server instrumentation
*
* Handles extraction of attributes from tool and prompt execution results.
*/
/**
* Build attributes for tool result content items
* @param content - Array of content items from tool result
* @returns Attributes extracted from each content item including type, text, mime type, URI, and resource info
*/
function buildAllContentItemAttributes(content) {
const attributes = {
[MCP_TOOL_RESULT_CONTENT_COUNT_ATTRIBUTE]: content.length,
};
for (const [i, item] of content.entries()) {
if (!isValidContentItem(item)) {
continue;
}
const prefix = content.length === 1 ? 'mcp.tool.result' : `mcp.tool.result.${i}`;
const safeSet = (key, value) => {
if (typeof value === 'string') {
attributes[`${prefix}.${key}`] = value;
}
};
safeSet('content_type', item.type);
safeSet('mime_type', item.mimeType);
safeSet('uri', item.uri);
safeSet('name', item.name);
if (typeof item.text === 'string') {
attributes[`${prefix}.content`] = item.text;
}
if (typeof item.data === 'string') {
attributes[`${prefix}.data_size`] = item.data.length;
}
const resource = item.resource;
if (isValidContentItem(resource)) {
safeSet('resource_uri', resource.uri);
safeSet('resource_mime_type', resource.mimeType);
}
}
return attributes;
}
/**
* Extract tool result attributes for span instrumentation
* @param result - Tool execution result
* @returns Attributes extracted from tool result content
*/
function extractToolResultAttributes(result) {
if (!isValidContentItem(result)) {
return {};
}
const attributes = Array.isArray(result.content) ? buildAllContentItemAttributes(result.content) : {};
if (typeof result.isError === 'boolean') {
attributes[MCP_TOOL_RESULT_IS_ERROR_ATTRIBUTE] = result.isError;
}
return attributes;
}
/**
* Extract prompt result attributes for span instrumentation
* @param result - Prompt execution result
* @returns Attributes extracted from prompt result
*/
function extractPromptResultAttributes(result) {
const attributes = {};
if (!isValidContentItem(result)) {
return attributes;
}
if (typeof result.description === 'string') {
attributes[MCP_PROMPT_RESULT_DESCRIPTION_ATTRIBUTE] = result.description;
}
if (Array.isArray(result.messages)) {
attributes[MCP_PROMPT_RESULT_MESSAGE_COUNT_ATTRIBUTE] = result.messages.length;
const messages = result.messages;
for (const [i, message] of messages.entries()) {
if (!isValidContentItem(message)) {
continue;
}
const prefix = messages.length === 1 ? 'mcp.prompt.result' : `mcp.prompt.result.${i}`;
const safeSet = (key, value) => {
if (typeof value === 'string') {
const attrName = messages.length === 1 ? `${prefix}.message_${key}` : `${prefix}.${key}`;
attributes[attrName] = value;
}
};
safeSet('role', message.role);
if (isValidContentItem(message.content)) {
const content = message.content;
if (typeof content.text === 'string') {
const attrName = messages.length === 1 ? `${prefix}.message_content` : `${prefix}.content`;
attributes[attrName] = content.text;
}
}
}
}
return attributes;
}
export { extractPromptResultAttributes, extractToolResultAttributes };
//# sourceMappingURL=resultExtraction.js.map