Last updated

title: "Logs" description: "View and analyze execution logs for all MCP tool calls."


Logs

The Logs tab provides a detailed view of every MCP tool execution across your AgentLink environment.

Each log entry includes metadata such as:

  • Timestamp
  • Actor (user or system)
  • Tool name
  • IP address and user agent
  • Execution performance data
  • Status and description

Viewing logs

Use the Logs tab to explore all recorded tool activity.
You can:

  • Sort by date and time
  • Filter by account, user, or log type
  • Click a log row to view details and raw data

Log details panel

When clicking a specific log, the details drawer shows:

FieldDescription
Date & timeWhen the event occurred
TypeThe log event type (e.g. mcp.tool.call)
Trace IDUnique ID used to correlate related actions
IP addressOrigin of the request
AccountThe account or tenant associated with the event
ActorThe user or system that initiated the action
User agentIdentifies the client (e.g. browser, SDK, or monitoring system)

You can toggle between Summary and Raw data views.


Example log entry

{
  "id": "68fb856ba4ef4c70b345b844",
  "type": "mcp.tool.call",
  "payload": {
    "toolName": "Create_a_new_expense",
    "performance": {
      "apiExecutionTime": 417.03874799981713,
      "totalExecutionTime": 479.268306999933
    },
    "apiRequest": {
      "fullUrl": "https://frontegg-ai-demo.com/api/expenses",
      "method": "POST",
      "requestBody": "{\"amount\":200,\"category\":\"Food\",\"date\":\"2025-10-24T12:00:00Z\",\"title\":\"Tasty food\"}"
    },
    "apiResponse": {
      "statusCode": 201
    }
  },
  "actor": {
    "type": "user",
    "id": "d0ee4978-f1f9-4ca4-b31a-bc4a3b9b4277",
    "email": "bob@vandelay-industries.com",
    "name": "Bob Sacamano",
    "externalId": ""
  },
  "timestamp": "2025-10-24T13:55:55.853Z",
  "vendorId": "80610946-db03-4d55-8270-48b3e5232f33",
  "traceId": "1-68fb8559-54992dc31b7bcbdc1c754b2d",
  "summary": {
    "action": "MCP tool call executed",
    "description": "Tool Create_a_new_expense has been executed"
  },
  "status": "info",
  "account": {
    "id": "574a2224-d11c-4ae8-8ce5-a7d31d31a502",
    "name": "Vandelay Industries"
  },
  "target": {
    "entity": "tool",
    "id": "Create_a_new_expense"
  },
  "httpContext": {
    "ip": "34.162.102.82",
    "userAgent": "Claude-User"
  }
}