Skip to main content
Glama
zebbern

agloop-mcp

by zebbern

agloop_search_logs

Search execution logs by agent, action, task ID, phase, or input/output summaries using full-text, case-insensitive queries.

Instructions

Full-text search through execution logs. Case-insensitive search across agent, action, task_id, phase, input/output summaries.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYes

Implementation Reference

  • The handler implementation for the `agloop_search_logs` MCP tool. It calls the `search_logs` method on the `StateManager` instance.
    @mcp.tool()
    def agloop_search_logs(query: str) -> str:
        """Full-text search through execution logs. Case-insensitive search across agent, action, task_id, phase, input/output summaries."""
        results = _sm().search_logs(query)
        return json.dumps([asdict(e) for e in results], indent=2)

Latest Blog Posts

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/zebbern/agloop-mcp'

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