Skip to main content
Glama
fitzypopper

osint-mcp-server

by fitzypopper

Check Password Breach

check_password_breach
Read-onlyIdempotent

Check if a password was exposed in a data breach without sending it, using k-anonymity to keep the password on your machine.

Instructions

Check if a password appeared in a breach (k-anonymity; password never leaves the machine).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
passwordYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnly/idempotent/non-destructive behavior. The description adds the key behavioral detail that the password never leaves the machine via k-anonymity, which is valuable context beyond the annotations.

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?

A single sentence that is front-loaded with the core action and immediately gives the critical privacy property. Every word earns its place; no filler.

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 one-parameter, read-only tool with an output schema, the description covers the essential behavioral context. It could mention what the response includes, but the output schema already handles that. No critical missing information for correct invocation.

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

Parameters2/5

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

Schema coverage is 0%, so the description must explain the password parameter. It only restates the word 'password' in the action and mentions the privacy mechanism, but does not describe the expected format, constraints, or how it is processed. It adds minimal meaning over the schema's type: string.

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 and resource: 'Check if a password appeared in a breach'. It clearly distinguishes from siblings like check_email_breaches by focusing on passwords. The added k-anonymity note reinforces the purpose without ambiguity.

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: when you need to check a password breach while keeping the password private. It does not explicitly mention alternatives or exclusions, but the privacy guarantee makes the use case well-defined.

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