Skip to main content
Glama
kouko

redshift-comment-mcp

by kouko

Search Tables

search_tables

Find Redshift tables by matching keywords against table names and comments. Use space-separated terms with OR logic; optionally narrow to a schema.

Instructions

Search tables by keywords (space-separated, OR logic) over table name and comment.

Pass schema_name to scope to one schema (faster, narrower). Omit it to search across all user schemas in the cluster (broader, slightly slower).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo
keywordsYes
schema_nameNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden and discloses useful traits: OR logic for space-separated terms, match fields, schema-scoping behavior, and the breadth/speed tradeoff. It doesn't discuss pagination or other edge behaviors, but an output schema exists and the core behavior 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?

Two compact sentences front-load the core behavior and then explain the optional scoping parameter. There is no filler, repeated schema content, or extraneous detail.

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 four-parameter search with an output schema, the description covers the search semantics, keyword logic, and scoping options well. It lacks sibling-alternative routing and pagination phrasing, but these are minor given the output schema and self-explanatory limit/offset parameters.

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 0%, so the description must add meaning. It does define keywords and schema_name well, but limit and offset receive no explanation beyond their names, which is only partially sufficient for a tool with no parameter descriptions.

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 opens with a precise verb-resource pair—'Search tables'—and specifies exactly what is matched: table name and comment using space-separated OR keywords. This makes the operation unambiguous and distinguishes it from sibling tools like search_columns or search_schemas 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?

It gives concrete guidance on the schema_name parameter: pass it to scope and speed up the search, omit it to cover all user schemas. It does not explicitly name alternative tools or state when not to use this tool, so it stops short of full exclusion guidance.

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