Skip to main content
Glama
MintOcha

codex-search-mcp

by MintOcha

find-in-page

Locate specific text or regex matches in a web page by providing its URL or reference ID, so you can pinpoint content without manual scanning.

Instructions

Find text pattern in page indicated by ref_id or URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ref_idYesURL or page reference ID
patternYesRegex or text pattern to locate

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden but provides little behavioral context. It doesn't state whether the search is case-sensitive, how matches are returned (e.g., list of locations), or if it's read-only. Only basic purpose is conveyed.

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?

The description is a single, efficient sentence that front-loads the core action. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no annotations and no output schema, the description is too sparse. It doesn't explain return values, behavior on no matches, or how it differs from similar sibling tools, leaving significant gaps.

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 coverage is 100%, so the schema already documents both parameters (ref_id and pattern). The description mentions 'text pattern' and 'ref_id or URL' but adds no extra meaning beyond the schema, making baseline 3 appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/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: finding text patterns in a page identified by ref_id or URL. It's clear what the tool does, though it doesn't differentiate itself from siblings like fetch or open-page beyond the text-finding aspect.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., page must be loaded) or exclusions, leaving the agent to infer usage.

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