Skip to main content
Glama
MintOcha

codex-search-mcp

by MintOcha

fetch

Extract readable page content from a list of URLs using Codex native page extraction, enabling web research and content analysis.

Instructions

Fetch readable page content for given URLs using Codex native page extraction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlsYesList of URLs to fetch readable content from

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 behavioral burden. It implies a read-only extraction ('readable page content', 'native page extraction'), which is useful, but says nothing about batch size limits, handling of non-HTML/JS-heavy pages, error behavior, or whether content is truncated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One tight sentence with the verb and resource front-loaded and no filler. It is efficient, though it leaves no room for the routing guidance the agent actually needs.

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

Completeness3/5

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

For a single-parameter, no-output-schema utility this is minimally adequate: the core operation is stated. Missing is any differentiation from similar retrieval siblings and any note on limits or edge cases, which matters given the crowded sibling set.

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% for the single 'urls' array parameter, so the schema already documents format and meaning. The description's plural 'URLs' matches the array but adds no syntax or constraint detail beyond the schema.

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?

States a specific verb (Fetch) and resource (readable page content for given URLs), which is clear on its own. However, it never differentiates itself from the sibling 'open-page' or 'click-link', so an agent cannot tell from this text alone which page-retrieval tool to pick.

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 indication of when to use this versus 'open-page', 'click-link', or 'web-search', nor any prerequisites or exclusions. Usage must be inferred entirely by the agent.

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