data-breach-detector
Server Details
Read-only breach intel, full history 2007-today: reports THAT an org was breached, never the data.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- beepboop2025/data-breach-detector
- GitHub Stars
- 0
- Server Listing
- data-breach-detector
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.6/5 across 7 of 7 tools scored.
Each tool has a clearly distinct purpose: assess_threat classifies text, breach_history searches the archive, breach_news reads recent disclosures, breach_stats aggregates statistics, breach_timeline builds per-entity chronologies, check_exposure provides a yes/no triage, and feed_sources lists metadata. Cross-references in descriptions explicitly direct users to the appropriate tool, eliminating ambiguity.
Tool names are consistently lowercase snake_case and most follow a logical pattern, but not all are verb_noun (e.g., breach_history, breach_stats are nouns while assess_threat, check_exposure are verbs). The 'breach_' prefix creates a strong family, so deviations are minor and do not impair readability.
Seven tools is ideal for this domain, covering search, news, statistics, timeline, exposure check, text classification, and source metadata without over-fragmentation or bloat. Each tool contributes a distinct capability and the set is well-scoped.
The tool surface provides comprehensive coverage of breach detection and analysis: historical search, recent disclosures, per-entity exposure checks and timelines, aggregate statistics, threat classification, and feed health checks. No obvious operational gap exists for the stated purpose.
Available Tools
7 toolsassess_threatARead-onlyIdempotentInspect
Classify a piece of security text you supply — an advisory, alert or forum post — into a threat level, matched categories, financial-target flags, a confidence score and a recommended action. Pure local analysis: it collects nothing, stores nothing and reaches no network; the text never leaves the server. Use it to triage findings surfaced by breach_news or from your own monitoring.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | the security text to classify — an advisory, alert or forum post |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the tool performs 'pure local analysis: it collects nothing, stores nothing and reaches no network; the text never leaves the server.' This adds meaningful privacy and network behavior not covered by the annotations' readOnlyHint and idempotentHint. No contradiction exists.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core action and output list, followed by a concise privacy note and usage directive. Every sentence serves a purpose, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that there is no output schema, the description does a good job of listing the outputs (threat level, matched categories, financial-target flags, confidence score, recommended action) and the input scenario. It does not specify possible values or formats, but it provides sufficient context for understanding the tool's role and use case.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already fully describes the single parameter ('text' with description 'the security text to classify — an advisory, alert or forum post'). The tool description repeats this phrasing almost verbatim without adding new meaning, so with 100% schema coverage, a baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Classify') and identifies the resource ('a piece of security text') and the outputs (threat level, categories, flags, confidence, recommended action). This clearly distinguishes it from sibling tools like breach_news and check_exposure, which focus on retrieving data rather than analyzing text.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit context: 'Use it to triage findings surfaced by breach_news or from your own monitoring.' This tells the agent when to invoke the tool, though it does not name alternative tools or give when-not-to-use conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
breach_historyARead-onlyIdempotentInspect
Search the FULL historical breach archive — every incident this server knows about, back to 2007: HaveIBeenPwned's verified breach directory, the 2020-2025 ransomwatch leak-site archive (~16k victims), the RansomLook live tracker and SEC 8-K Item 1.05 filings. Filter by keyword, year range, sector, exposed data type or minimum scale; order by date or size. Returns disclosure metadata only, never breach contents. Use this for questions like 'what were the biggest breaches of 2013' or 'which airlines have ever been hit by ransomware'.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | maximum incidents to return (default 10; raise it deliberately, large pages are heavy for an agent loop) | |
| order | No | 'newest' (default), 'oldest' or 'largest' (by accounts exposed) | newest |
| query | No | optional keyword over entity, title, summary, actor and data types; omit to browse the whole archive | |
| offset | No | how many matching incidents to skip before the page starts; count can run to five figures over the ~16k-post archive, so this is how the tail is reached | |
| sector | No | industry keyword filter, e.g. 'bank', 'health', 'gaming' | |
| year_to | No | latest incident year to include, e.g. 2020 | |
| data_type | No | require an exposed data type, e.g. 'passwords', 'credit card', 'health' | |
| year_from | No | earliest incident year to include, e.g. 2013 | |
| min_accounts | No | only incidents exposing at least this many accounts |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=true, and idempotentHint=true, covering mutation safety. The description adds valuable behavioral disclosures: it returns only metadata (no contents), notes that large pages are heavy for an agent loop (in the limit param), and explains offset semantics for reaching the tail of a ~16k-post archive. This goes well 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise yet information-dense, with the core action ('Search the FULL historical breach archive') front-loaded. Every sentence earns its place: sources, filter capabilities, return-type limitation, and concrete example queries. It is well-structured and does not over-elaborate.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (9 parameters, multiple sources, no output schema), the description is remarkably complete. It covers the full date range, data sources, filter dimensions, return scope, and even performance guidance for large pages. The absence of an output schema is mitigated by 'Returns disclosure metadata only', which sets clear expectations for the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description provides a high-level summary of filter types ('keyword, year range, sector, exposed data type or minimum scale') and ordering ('by date or size'), but this does not add meaningful detail beyond what is already in the schema parameter descriptions. Thus, no score above baseline is warranted.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool searches the FULL historical breach archive, enumerates specific data sources (HIBP, ransomwatch, RansomLook, SEC filings), and clarifies it returns disclosure metadata only. This clearly distinguishes breach_history from sibling tools like breach_news or breach_stats by emphasizing the historical, archive-wide scope. Examples ('biggest breaches of 2013') further anchor its purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear usage context with 'Use this for questions like...' and defines what it does not return ('never breach contents'). However, it does not explicitly name alternatives or state when to prefer other sibling tools, so it falls short of a 5 which requires explicit when-not/alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
breach_newsARead-onlyIdempotentInspect
Read recent breach and ransomware DISCLOSURES from public threat-intel feeds (HaveIBeenPwned, the RansomLook live leak-site tracker and SEC 8-K Item 1.05 filings), newest first. Every row is metadata only — entity, date, scale, exposed data TYPES, threat level and source — never the leaked data, and a redaction pass strips anything credential-shaped before it is returned. Use sector to narrow to an industry keyword; for one specific organization use check_exposure; for all-time history use breach_history.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | maximum disclosures to return (default 10; raise it deliberately, large pages are heavy for an agent loop) | |
| offset | No | how many matching disclosures to skip before the page starts; with limit this walks a result set larger than any single page (count reports the full total) | |
| sector | No | optional keyword filter over entity, title, summary, categories and exposed data types, e.g. 'bank', 'health', 'crypto' | |
| source | No | optional source filter: 'HaveIBeenPwned', 'RansomLook', 'ransomwatch-archive' or 'SEC EDGAR 8-K 1.05' | |
| since_days | No | look-back window in days over disclosure dates (default 30) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the annotations (readOnly, openWorld, idempotent), the description discloses that 'Every row is metadata only — entity, date, scale, exposed data TYPES, threat level and source — never the leaked data, and a redaction pass strips anything credential-shaped before it is returned.' This clearly explains what the tool does not return and its redaction behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense paragraph that front-loads the core purpose and then covers key constraints (metadata only, redaction, ordering) and usage pointers. Every sentence contributes value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description explains the output row composition (entity, date, scale, data types, threat level, source), ordering (newest first), and redaction. Combined with a fully self-documenting schema and sibling disambiguation, the context is complete for an agent to invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with detailed parameter descriptions (e.g., limit default, range, 'large pages are heavy', offset semantics, sector filter scope). The description adds little new parameter semantics beyond the schema, simply reiterating the sector filter usage. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it 'Read[s] recent breach and ransomware DISCLOSURES from public threat-intel feeds' and specifies the sources (HaveIBeenPwned, RansomLook, SEC 8-K). It explicitly distinguishes itself from siblings by noting 'for one specific organization use check_exposure; for all-time history use breach_history.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides explicit when-to-use guidance: 'Use sector to narrow to an industry keyword; for one specific organization use check_exposure; for all-time history use breach_history.' It also mentions offset/limit behavior in the schema descriptions, reinforcing usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
breach_statsARead-onlyIdempotentInspect
Aggregate the full breach archive into analyst-grade statistics: incidents and accounts exposed per year, per source, per exposed data type, per threat level, or per ransomware actor — plus the five largest incidents ever recorded. Use it to answer 'how has breach volume trended since 2015', 'which ransomware groups have the most victims' or 'how often are passwords part of a breach'. Aggregate counts only; no leaked records.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | how many buckets to return, largest first (default 40); buckets_total reports how many exist, and grouping by actor over the ~16k-post archive produces far more | |
| sector | No | optional industry keyword filter applied before aggregating | |
| group_by | No | aggregation axis: 'year' (default), 'source', 'data_type', 'threat_level' or 'actor' (ransomware group) | year |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint. The description adds meaningful behavior beyond those: 'Aggregate counts only; no leaked records' clarifies it never returns raw records, and 'plus the five largest incidents ever recorded' discloses an extra output. These traits are not covered by annotations, so the description adds useful transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two tightly packed sentences: first states capability and dimensions, second gives real usage examples and a clear boundary. No filler or redundancy; every phrase earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description reasonably conveys return shape ('incidents and accounts exposed per year...' plus five largest incidents). It addresses complexity with examples and the no-leaked-records caveat. Slight gap is not detailing limit behavior or bucket ordering, but those are covered in the schema, so remaining context is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters with detailed descriptions, including default values, min/max, and semantic notes (e.g., limit buckets_total behavior). The tool description adds no new parameter-specific meaning beyond restating group_by options already in the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses specific verb 'Aggregate' with clear resource 'full breach archive' and enumerates exact output dimensions (per year, source, data type, threat level, actor). It differentiates from siblings via 'Aggregate counts only; no leaked records' and answers concrete analyst questions, making purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use guidance via example questions ('how has breach volume trended...', 'which ransomware groups...'). While it doesn't name alternative tools or state when not to use it, the context is clear enough for an agent to select it over the listed siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
breach_timelineARead-onlyIdempotentInspect
Build the incident-by-incident CHRONOLOGY of one organization across every source and all history, with judgment on top: first and latest incident, incidents per year, whether the organization is a repeat victim, worst threat level and total accounts ever exposed. Those summary fields cover EVERY incident on record. The timeline list carries a window of them, oldest first within the window, defaulting to the most recent limit incidents and paging backwards with offset, so an organization with a long history shows its current state first rather than only its ancient one. Repeat victimhood is a forward-looking risk signal: organizations named more than once have demonstrably not closed the gap. Metadata only; never the leaked data. For a yes/no presence check use check_exposure.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | how many incidents the timeline list carries (default 12); the counts, span and judgment always cover every incident | |
| entity | Yes | domain, company or brand to build the chronology for, e.g. 'yahoo.com' or 'Adobe' | |
| offset | No | pages backwards through the chronology from the recent end: 0 gives the newest window, 12 gives the window before that |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description discloses that the tool is metadata-only ('never the leaked data'), that the timeline list carries a window (not all incidents) and how paging works, and that repeat victimhood is a forward-looking risk signal. This adds meaningful behavioral context not derivable from annotations or schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is verbose but every sentence earns its place: purpose, summary fields, timeline behavior, interpretative note on repeat victimhood, metadata-only disclosure, and alternative tool. It is front-loaded with the main action and structured logically, though slightly longer than strictly necessary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description compensates by naming the summary fields and the timeline list structure, explaining the window and paging, and stating the metadata-only limitation. It does not enumerate every field in the incident list, but given the tool's complexity and that all parameters are documented, this is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters, so baseline is 3. The description adds valuable semantics for limit and offset by explaining the paging behavior ('paging backwards with offset' and the default window), and gives examples for entity ('yahoo.com' or 'Adobe'). This enhances beyond the schema descriptions, justifying a 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool builds an incident-by-incident chronology for one organization across all sources, with summary judgments like first/latest incident, incidents per year, repeat victim status, worst threat level, and total accounts. It explicitly differentiates from check_exposure by directing users to that tool for yes/no presence checks, satisfying sibling differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage guidance: it explains the timeline window and paging behavior ('defaulting to the most recent limit incidents and paging backwards with offset'), notes that summary fields always cover every incident, and gives an explicit alternative for a different use case ('For a yes/no presence check use check_exposure'). This tells the agent when to use this tool vs. alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_exposureARead-onlyIdempotentInspect
Answer whether a domain, company or brand appears in public breach or ransomware DISCLOSURES across ALL history (2007 → today): yes/no with mention count, worst threat level, total accounts exposed across matches, the exposed data TYPES, and the matching disclosure metadata — never the exposed records themselves. This is a triage signal built from disclosure feeds, not proof of compromise; confirm through authorized channels before acting. For the incident-by-incident chronology of one entity, use breach_timeline; for a recent-news sweep, use breach_news. mentions, the aggregates and the data types always cover every match; matches carries one page of them, sized by limit and walked with offset.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | maximum matching disclosures to return (default 8; the mention count and the aggregates always cover every match) | |
| query | Yes | domain, company or brand to look up, e.g. 'example.com' or 'Acme' | |
| offset | No | how many matches to skip before the page starts; with limit this reaches matches beyond the first page | |
| since_days | No | optional look-back window in days; the default covers all history |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnly, openWorld, idempotent), the description adds critical behavioral details: it never returns exposed records, it is built from disclosure feeds rather than proof of compromise, and it explains that aggregates cover all matches while the matches list is paged via limit/offset. These go well beyond the structured annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but well-structured, front-loading the core purpose before expanding into caveats, alternatives, and pagination. Each sentence adds necessary information, and there is no fluff. It is appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite lacking an output schema, the description enumerates the return fields (yes/no, mention count, worst threat level, total accounts exposed, data types, metadata) and clarifies API behavior. It fully covers the necessary context for an agent to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
While schema description coverage is 100%, the description adds meaning beyond the schema by explaining how limit/offset affect only the matches page, not the aggregates or mention count, and that since_days default covers all history. This clarifies interaction between parameters and return values.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: to answer whether a domain, company, or brand appears in breach/ransomware disclosures across all history, returning a yes/no with aggregates and metadata. It also explicitly distinguishes from siblings by naming breach_timeline and breach_news for other use cases.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit when-to-use guidance: it labels the tool as a triage signal, warns against treating it as proof of compromise, and directs users to breach_timeline for chronological details or breach_news for recent news. It also clarifies that the tool never returns exposed records, setting expectations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
feed_sourcesARead-onlyIdempotentInspect
List the public disclosure feeds this server aggregates, how many disclosures are cached per source, each source's newest item and an honest staleness flag, plus cache ages. Takes no arguments. Also states the scope plainly: public feeds only — no .onion access, no arbitrary fetching or crawling, no credential or PII output. Check this first if another tool's answer looks thin: a stale live feed is a finding, not background noise.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint and idempotentHint. The description adds valuable context: an 'honest staleness flag', cache ages, and explicit limitations on what is NOT provided (no PII, no arbitrary crawling). This goes beyond the annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense and well-structured: first sentence lists the output, second confirms no args, third states scope, and fourth gives usage guidance. Every sentence earns its place, with no fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the zero-parameter, no-output-schema design, the description fully covers what the agent needs: what is returned (feeds, counts, new items, staleness, cache ages), scope limits, and when to use it. It is complete for a read-only health-check tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description explicitly states 'Takes no arguments', which confirms the empty schema and removes any ambiguity for the agent. This is clear and sufficient.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and a precise resource ('public disclosure feeds'), then enumerates exact output elements (cached disclosure counts, newest item, staleness flag, cache ages). This clearly distinguishes it from siblings like breach_news or breach_history, which focus on content rather than feed health.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says 'Check this first if another tool's answer looks thin', giving a concrete usage scenario. It also states scope exclusions ('no .onion access, no arbitrary fetching or crawling, no credential or PII output'), which tells when not to use the tool. This is clear when/when-not guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
AlicenseNot gradedqualityCmaintenanceProvides read-only access to MISP threat intelligence data, enabling event and attribute search, tag and taxonomy browsing, and galaxy lookups through natural language.9AGPL 3.0- FlicenseBqualityDmaintenanceEnables read-only access to FileMaker databases through the Data API, allowing users to retrieve records, analyze metadata, search across layouts, and infer relationships while maintaining data security.16
- AlicenseNot gradedqualityDmaintenanceProvides read-only access to Microsoft 365 services including SharePoint, OneDrive, Outlook, Teams, and Calendar through the Microsoft Graph API, enabling users to search, browse, and retrieve content across their M365 suite.1MIT
- AlicenseAqualityBmaintenanceRead-only access to your Citlyze AI search visibility workspace: visibility scores, tracked prompts, citations, competitor comparison, recommendations, and AI crawler analytics.9MIT
Your Connectors
Sign in to create a connector for this server.