Skip to main content
Glama
WYRE-AI

Island MCP Server

by WYRE-AI

island_list_compromised_credentials

List compromised credentials detected in the browser within a time window, newest first. Specify start/end dates to narrow results, with optional limit and offset.

Instructions

List credentials Island has detected as compromised (e.g. via dark-web/breach-corpus matching on credentials entered into the browser) within a time window, newest first. Use start/end to bound the window; omit both for Island's server-side default window. Note: at least one third-party integrator has reported this endpoint's offset pagination as unreliable in practice (returning the same page regardless of offset) - treat limit/offset as best-effort.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoInclusive upper bound, ISO 8601. Defaults to now when omitted.
limitNoItems per page. Defaults to 100.
startNoInclusive lower bound, ISO 8601 (e.g. 2026-09-01T00:00:00Z). Island applies a server-side default window when omitted.
offsetNoPagination offset (0-based). Defaults to 0.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It transparently exposes a known limitation: offset pagination is unreliable in practice and should be treated as best-effort. It also discloses the detection mechanism and default window behavior, giving the agent realistic expectations beyond what the schema conveys.

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?

Three sentences, each purposeful: the first states the core action and ordering, the second explains the time-window parameters, and the third gives a critical caveat. No filler or redundancy; the most important warning is placed last but is clearly highlighted.

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 list tool with no output schema and no annotations, the description is quite complete: it covers purpose, input semantics, default behavior, and a known pitfall. It omits details about the return structure, but that is typically inferable from the tool name and 'list' action. The pagination warning is especially valuable for correct usage.

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?

Although schema coverage is 100% (each parameter already has a description), the description adds extra meaning: it explains that omitting start/end triggers a server-side default window, and it characterizes limit/offset as best-effort due to pagination issues. This goes beyond the schema's straightforward definitions.

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 ('List'), a distinct resource ('credentials... compromised'), and adds context (dark-web/breach-corpus matching) and ordering ('newest first'). This clearly distinguishes it from sibling tools that list other resource types like admin actions, audit events, or devices.

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?

It provides clear parameter-usage guidance: using start/end to bound the window and omitting both for the server-side default. However, it does not explicitly name alternatives or state when not to use this tool vs. siblings; the resource type makes that implicit, but exclusions are not articulated.

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