Skip to main content
Glama

read_architect_page

Fetch full markdown content from an indexed Salesforce Architect page URL, with optional character limit to control output size. Use when you need complete page details rather than a summary.

Instructions

Read the markdown content of a specific indexed Salesforce Architect page by its URL. Use max_chars to limit output size. For a lightweight overview without full content, prefer read_architect_page_summary instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe exact URL of the page to read.
max_charsNoOptional: truncate output to this many characters. Omit for full content.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses that the page must be indexed and that max_chars truncates output, but it does not mention authentication requirements, rate limits, error behavior for unindexed URLs, or explicitly confirm read-only/non-destructive behavior. Some behavioral context is present but incomplete.

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 three sentences, front-loaded with the core purpose, followed by parameter usage and an alternative suggestion. Every sentence earns its place with no redundancy or filler.

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 simple read tool with no output schema and no annotations, the description covers the main operation, the key parameter usage, and the relevant alternative. However, it omits context about authentication, error handling, and rate limits, leaving minor gaps for an agent to infer.

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 100%, so the schema already documents both parameters in detail. The description restates the max_chars behavior and implies the URL parameter, adding no meaningful semantics beyond what the schema provides. Baseline 3 is appropriate.

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 states a specific verb (read) and resource (markdown content of a specific indexed Salesforce Architect page by its URL), clearly distinguishing it from read_architect_page_summary. An agent can immediately understand the tool's core function.

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

Usage Guidelines5/5

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

It explicitly names the alternative (read_architect_page_summary) and the condition for using it (for a lightweight overview without full content), and instructs how to limit output with max_chars. This provides clear when-to-use and when-not-to-use guidance.

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