Skip to main content
Glama

LogsLoom

Server Details

Ingest and search LogsLoom logs from coding agents.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP ยท MCP 2025-11-25
URL

TDQS

A3.9/5.0

Scored across 4 tools

Disambiguation4/5

Each tool has a clear operational role: single-fetch, batch ingest, project-scope check, and filtered search. The only minor ambiguity is that logs_projects_list and logs_search both mention GET /v1/logs, but their intents are distinct enough for an agent to choose correctly.

Naming Consistency4/5

Three tools follow a clear logs_<verb> pattern: logs_get, logs_ingest, logs_search. logs_projects_list deviates because the verb comes after the noun, breaking the otherwise consistent convention, but the overall pattern remains readable.

Tool Count5/5

Four tools is well-scoped for a focused log ingestion and retrieval server. Each tool covers a necessary operation without redundancy or bloat.

Completeness4/5

The core lifecycle is covered: ingest events, search logs, and fetch a single log, plus a project-scope/connectivity check. Some capabilities like log deletion or explicit project listing are absent, but logs are typically append-only and those gaps are consistent with the API's apparent design.

Available Tools

4 tools
logs_getGet a log by idAInspect

Fetch one log by id. The HTTP API has no GET /v1/logs/:id yet, so this tries that path and falls back to searching the latest list page.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesLog event id from ingest or search

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the transparency burden. It usefully discloses the fallback behavior: trying a direct HTTP path that doesn't exist yet and then falling back to searching the latest list page. It stops short of noting potential limitations like older logs possibly not being on the latest page, but the core workaround is transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. The core purpose is front-loaded, and the second sentence provides valuable behavioral detail that earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with no output schema and no annotations, the description covers the main operation and the fallback mechanism. It could mention what is returned or how failures are handled, but the current detail is adequate for an agent to call the tool with reasonable confidence.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and the schema already documents the 'id' parameter as 'Log event id from ingest or search.' The description adds no parameter-level meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource: 'Fetch one log by id.' This clearly distinguishes it from the sibling tools (logs_ingest, logs_search, logs_projects_list) without needing to inspect their schemas.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'Fetch one log by id' clearly communicates the intended use case: retrieve a single known log. It does not explicitly name alternatives or exclusions, but the by-id scoping is enough to guide an agent away from the search tool for this task.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

logs_ingestIngest logsAInspect

Send one or many log events to LogsLoom (POST /v1/logs). Provide a single event via level+message, or a batch in events (max 100).

ParametersJSON Schema
NameRequiredDescriptionDefault
levelNoRequired unless `events` is set
eventsNoBatch of events; overrides single-event fields when set
messageNoRequired unless `events` is set
serviceNo
metadataNo
timestampNo
environmentNo

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It discloses the POST endpoint (implying a write operation), the batch limit of 100, and the two modes. However, it doesn't disclose what happens on success/failure, whether the API is idempotent, or any rate limits. For a write tool with no annotations, this is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with the core action and endpoint, then the key branching logic. Every word earns its place; no fluff or repetition of schema details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 7 parameters, no output schema, and no annotations, the description covers the essential decision (single vs batch) and the constraint (max 100). It doesn't explain return values or error behavior, but the core calling contract is clear enough for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 43%, so the description must compensate. It does: it explains the relationship between 'level'+'message' (single event) and 'events' (batch), and notes that 'events' overrides single-event fields. This adds meaning beyond the raw schema, though it doesn't detail every optional field like service, metadata, timestamp, or environment.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Send'), a resource ('log events to LogsLoom'), and the exact endpoint (POST /v1/logs). It also distinguishes the two invocation modes (single event vs batch), which clearly separates it from sibling tools like logs_get and logs_search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when to use this tool: to send one or many log events. It explains the single vs batch choice and the max batch size. It doesn't explicitly say when NOT to use it or name alternatives, but the sibling tools (get, search, projects_list) are obviously different operations, so the usage context is clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

logs_projects_listCurrent project scopeAInspect

There is no user-session projects API. Returns the project scope implied by the current API key (connectivity check via GET /v1/logs).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries the burden. It discloses a connectivity check via GET /v1/logs and that it returns project scope, implying a read-only operation. It also notes the absence of a user-session API. It does not detail error behavior or side effects, but for a simple GET that is acceptable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, front-loaded with the core purpose ('Returns the project scope'), and includes only necessary context about the connectivity check and lack of an alternative API. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Tool is simple with no parameters, but the description does not specify the exact structure of the returned project scope (e.g., string vs object) nor any error conditions. Given no output schema, this leaves ambiguity about the return value, making it incomplete for an agent that needs to interpret the result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Tool has zero parameters and schema coverage is 100% (vacuously). Baseline is 4 for zero-param tools. The description explains the tool's purpose and what it returns, which is sufficient given no parameters to document.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description states a specific verb 'returns' and resource 'project scope', and clearly distinguishes from sibling log tools (logs_get, logs_ingest, logs_search) by being about project scope rather than log operations. The title 'Current project scope' reinforces the purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies usage by noting 'There is no user-session projects API', indicating this is the only way to get project scope. It does not explicitly list alternatives or when-not-to-use, but the distinction from siblings is obvious from the name and purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updates
    • First observedlogs_get
    • First observedlogs_ingest
    • First observedlogs_projects_list
    • First observedlogs_search

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Indexes and searches agent conversation logs from Antigravity and Cursor workspaces, enabling semantic search, token analysis, and benchmarking over local SQLite storage.
    9 npm
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables searching, indexing, and recovering past AI chat sessions and agent actions from local AI coding tools, with optional vector database semantic search and direct filesystem access.
    -
  • A
    license
    Not graded
    quality
    A
    maintenance
    Enables natural-language querying and investigation of homelab logs from syslog, Docker, OTLP, and AI transcripts, with SQLite full-text search, timeline correlation, incident clustering, and fleet topology insights.
    3
    AGPL 3.0
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources