Redra
Server Details
Search current class-action settlements and identify possible matches using structured filters.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- sacrosaunt/Redra
- GitHub Stars
- 0
- Server Listing
- Redra MCP
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.1/5 across 5 of 5 tools scored.
Each tool has a clearly distinct purpose: dataset metadata, single record retrieval, batch record retrieval, single search, and batch search. The singular/plural and batch naming effectively differentiate them.
All tools follow a consistent verb_noun pattern using snake_case (get_dataset_info, get_settlement, get_settlements, search_settlements, search_settlements_batch). Verbs (get/search) and noun granularity are predictable.
Five tools is well-scoped for a settlements search and retrieval server. Each tool earns its place without overlap or bloat.
The domain is read-only settlement search and retrieval. The set covers dataset info, single and batch lookup, single search, and batch search, with no obvious missing operations for its stated purpose.
Available Tools
5 toolsget_dataset_infoGet dataset informationARead-onlyIdempotentInspect
Return source, license, freshness, counts, and hosted aggregate metrics.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds the specific fields returned, which is useful but does not go beyond what annotations plus output schema would imply.
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?
A single, front-loaded sentence that names all key return contents. No wasted words.
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 tool is simple (no params, read-only, idempotent) and has an output schema, so the description does not need to explain return values. The description names the key data categories and is complete for this scope.
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 schema is empty and there is nothing to explain. Baseline for 0 params is 4, which 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 'Return' and names precise resource components (source, license, freshness, counts, hosted aggregate metrics). This clearly distinguishes it from sibling settlement-related tools.
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?
No explicit when-to-use or alternative guidance is provided. However, the description clearly implies it is for dataset metadata retrieval, and sibling names confirm it is separate from settlement operations, so usage context is indirectly clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_settlementGet a settlementARead-onlyIdempotentInspect
Return the complete stored record and official source links for one settlement ID produced by a search.
| Name | Required | Description | Default |
|---|---|---|---|
| settlement_id | Yes | Exact settlement identifier returned by a search. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds context about the returned content (complete record and official source links), which is useful for setting expectations. It doesn't discuss error handling or pagination, but those are less critical for a single-record retrieval.
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, clearly structured sentence that front-loads the purpose and includes essential qualifiers. No wasted words.
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?
This is a simple, single-parameter read-only tool with a rich annotation set and an output schema. The description covers what it returns and when to use it. There is no missing critical information 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.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and already explains that settlement_id is 'Exact settlement identifier returned by a search.' The description reinforces this same idea without adding new meaning, so the 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 states a specific verb ('Return') and resource ('complete stored record and official source links for one settlement ID'). It clearly distinguishes from siblings like search_settlements and get_settlements by focusing on a single ID produced by a search.
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 phrase 'produced by a search' gives clear context that this tool is intended for retrieving a specific settlement after a search, implying the agent should use search tools first. It doesn't explicitly name alternatives, but the usage context is unambiguous enough for a simple getter.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_settlementsGet settlementsARead-onlyIdempotentInspect
Return complete stored records and official source links for up to 20 settlement IDs produced by search.
| Name | Required | Description | Default |
|---|---|---|---|
| settlement_ids | Yes | Settlement identifiers returned by search to retrieve together. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, non-destructive, and idempotent behaviors, so the description adds value by noting the records are complete and include official source links, and that input is limited to search-produced IDs. This goes 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 a single, well-structured sentence that front-loads the action verb. Every word contributes meaning, with no unnecessary details or 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?
For a read-only tool with one parameter, the description covers the purpose, input scope, and output content. The existence of an output schema further details return format, so the description is sufficiently complete for an agent to invoke 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?
The schema description for settlement_ids already explains the parameter as 'Settlement identifiers returned by search to retrieve together' with max 20. The description repeats 'up to 20' and 'produced by search' without adding new semantic details beyond the schema.
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 returns complete stored records and official source links for up to 20 settlement IDs, distinguishing it from search tools and the singular get_settlement. The verb 'return' and resource 'complete stored records and official source links' are specific and descriptive.
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 phrase 'produced by search' clearly implies the tool is used after search, providing context for when to use it. While it does not explicitly name alternatives or exclusions, the sibling tool names and the description's focus on retrieval make the usage clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_settlementsSearch settlementsARead-onlyIdempotentInspect
Search one settlement angle using logical AND keywords and structured status, type, state, proof, and deadline filters. Status defaults to open. Results include source metadata and quality flags.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum records returned, from 1 to 50. | |
| state | No | Optional two-letter US postal abbreviation, such as CA. | |
| status | No | Public lifecycle filter: open or upcoming. Defaults to open. Upcoming records are not yet claimable and must be presented as a separate watchlist. | open |
| keywords | No | Required logical-AND terms for specific companies, brands, products, employers, services, or incidents. Use separate queries for alternatives and settlement_type for taxonomy. | |
| deadline_after | No | Include deadlines on or after this ISO 8601 date. | |
| proof_required | No | Exact proof requirement: yes, no, optional, varies, or unknown. | |
| deadline_before | No | Include deadlines on or before this ISO 8601 date. | |
| settlement_type | No | Exact settlement taxonomy filter. Prefer this over keywords for type concepts such as data breaches, privacy, refunds, financial fees, or consumer products. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is well covered. The description adds useful behavioral context: the default status is open and results include source metadata and quality flags. It does not mention sorting or pagination, but the annotation coverage lowers the burden.
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 action and resource, and every clause earns its place. It avoids redundancy and unnecessary detail, making it highly scannable for an agent.
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 complete input schema, output schema presence, and read-only/idempotent annotations, the description is sufficiently complete for a search tool. It captures the core search strategy and result contents. The upcoming-status watchlist separation is not in the description, but the schema's status enum description covers that nuance.
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%; every parameter is already documented with type, default, and meaning. The tool description merely restates the filter categories without adding new parameter-level details. Baseline 3 is appropriate given the 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 opens with 'Search one settlement angle', identifying the verb and resource, and enumerates the filter dimensions (keywords, status, type, state, proof, deadline). The 'one settlement angle' qualifier hints at differentiation from batch/lookup siblings, though it does not explicitly name alternative tools.
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 implies use for targeted single-angle filtered searches via 'one settlement angle using logical AND keywords', which suggests when to use the tool. However, it does not explicitly state when to prefer this over search_settlements_batch or get_settlements, nor does it provide exclusions or alternative recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_settlements_batchSearch settlements in a batchARead-onlyIdempotentInspect
Run up to 50 independent settlement searches and deduplicate records across queries. Results include matched_query_indices, and executed_query_count reports the number of searches performed. Use when several unrelated search angles should be evaluated together.
| Name | Required | Description | Default |
|---|---|---|---|
| queries | Yes | Independent settlement searches. Each query retains logical-AND keyword semantics; unrelated alternatives belong in separate query objects. | |
| max_total_results | No | Maximum unique settlement records returned across the whole batch after cross-query deduplication. This caps output, not the number of independent searches performed. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (readOnlyHint, idempotentHint, destructiveHint), the description adds important behavioral details: deduplication across queries, result fields matched_query_indices and executed_query_count, and the 50-query cap. This helps the agent predict execution 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?
Three sentences, front-loaded with the core action and limits, followed by result hints and 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 complex schema and existing output schema, the description covers the key differentiators (batch, dedup, usage context) and reinforces limits. It could mention max_total_results explicitly, but the schema already describes it, so the description 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 description coverage is 100%, so baseline is 3. The description adds the dedup interaction between query objects and clarifies max_total_results as a cap on unique records, which adds meaning beyond the schema's wording.
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 runs up to 50 independent settlement searches and deduplicates records across queries, which differentiates it from sibling single-search tools. It also specifies result fields that clarify the batch nature.
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 explicitly says 'Use when several unrelated search angles should be evaluated together', providing a clear usage condition. It does not mention alternatives or exclusions, but the condition is specific enough to guide selection.
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
- Alicense-qualityCmaintenanceScreens individuals and entities against the OIG LEIE exclusion list, returning candidate matches that require human verification.MIT

CourtAPI MCP Serverofficial
AlicenseAqualityCmaintenanceSearch and retrieve US federal court cases, dockets, claims, and documents via PACER — directly from Claude and other MCP-compatible AI assistants.1041MIT- Flicense-qualityDmaintenanceEnables searching FDA food recalls and adverse event reports through natural language, supporting filters and pagination.
- Alicense-qualityCmaintenanceEnables legal research by querying public official sources for processes, sanctions, DJEN publications, and jurisprudence using names, CPF, CNPJ, or CNJ numbers, without login.2MIT
Your Connectors
Sign in to create a connector for this server.