Expo MCP Server

by mattlemmone
Verified

expoGetLogs

Retrieve and filter logs from the Expo MCP Server by count, type, timestamp, or text. Supports output in text or JSON format for debugging React Native applications.

Instructions

Get filtered logs from the Expo server with advanced options

Input Schema

NameRequiredDescriptionDefault
afterNoGet logs after this timestamp (ISO format)
countNoNumber of log entries to retrieve
filterNoFilter logs containing this text
formatNoOutput formattext
typeNoType of logs to retrieveall

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "after": { "description": "Get logs after this timestamp (ISO format)", "type": "string" }, "count": { "default": 50, "description": "Number of log entries to retrieve", "type": "number" }, "filter": { "description": "Filter logs containing this text", "type": "string" }, "format": { "default": "text", "description": "Output format", "enum": [ "text", "json" ], "type": "string" }, "type": { "default": "all", "description": "Type of logs to retrieve", "enum": [ "all", "stdout", "stderr" ], "type": "string" } }, "type": "object" }

You must be authenticated.

Other Tools from Expo MCP Server

Related Tools

ID: i97un228jp