Skip to main content
Glama

simplifier-mcp

by SimplifierIO

logging-list

Retrieve recent log entries from Simplifier with filtering by log level and time range. Access debug, info, warning, error, or critical logs using pagination and timestamp parameters.

Instructions

Get recent log entries from Simplifier

This tool provides access to the Simplifier logging system. You can filter logs by level and time range. If no filters are used, it returns the 50 most recent log entries. If you are expecting to find some logs but they are missing, ask the user to check whether logging for execution is set to the right level in the Simplifier server settings.

Log Levels:

  • 0 = Debug

  • 1 = Info

  • 2 = Warning

  • 3 = Error

  • 4 = Critical

Parameters:

  • pageSize: number of log entries to return in one request, defaults to 50.

  • page: if more than "pageSize" entries are available, this can be used for accessing later pages. Starts at 0, defaults to 0.

  • logLevel: Filter by minimum log level (0-4)

  • since: ISO timestamp for entries since this time

  • from/until: ISO timestamps for a time range (must be used together)

Examples:

  • Default: Get 50 most recent entries

  • logLevel=3: Only errors and critical

  • since="2025-01-01T00:00:00Z": Entries since date

Input Schema

NameRequiredDescriptionDefault
pageSizeNoNumber of log entries to return, defaults to 50
pageNoPage number for pagination, starts at 0
logLevelNoFilter by minimum log level (0=Debug, 1=Info, 2=Warning, 3=Error, 4=Critical)
sinceNoISO timestamp - get entries since this time
fromNoISO timestamp - start of time range (must be used with until)
untilNoISO timestamp - end of time range (must be used with from)

Input Schema (JSON Schema)

{ "properties": { "from": { "description": "ISO timestamp - start of time range (must be used with until)", "type": "string" }, "logLevel": { "description": "Filter by minimum log level (0=Debug, 1=Info, 2=Warning, 3=Error, 4=Critical)", "maximum": 4, "minimum": 0, "type": "number" }, "page": { "default": 0, "description": "Page number for pagination, starts at 0", "type": "number" }, "pageSize": { "default": 50, "description": "Number of log entries to return, defaults to 50", "type": "number" }, "since": { "description": "ISO timestamp - get entries since this time", "type": "string" }, "until": { "description": "ISO timestamp - end of time range (must be used with from)", "type": "string" } }, "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SimplifierIO/simplifier-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server