Skip to main content
Glama

Get a MintMCP docs page

get_page
Read-onlyIdempotent

Fetch a MintMCP documentation page from a public docs URL or a slug, for example "https://www.mintmcp.com/docs/security/tool-governance" or just "security/tool-governance". Use it when a user pastes a docs link or names a page directly. It returns the same full markdown content as fetch.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesA docs page URL or slug, e.g. "https://www.mintmcp.com/docs/enterprise/sso" or "enterprise/sso".

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
urlYes
textYes
titleYes
metadataNo

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the agent knows it's a safe read. Description adds that it returns full markdown content, same as fetch, which is helpful but not essential. No contradictions.

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 sentences, front-loaded with the core action, no wasted words. Each sentence adds value.

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?

Given output schema exists and annotations cover safety, the description sufficiently covers purpose, usage, and parameter. Mentioning the return format aligns with sibling tool, making it complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema has 100% coverage with a clear description for the single 'url' parameter. The description adds examples and clarifies that slugs are acceptable, enhancing understanding beyond the schema.

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?

Description clearly states the tool fetches a MintMCP documentation page, using a specific verb+resource. It distinguishes from sibling 'fetch' by specifying it targets docs pages and notes it returns the same content as fetch.

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?

Explicitly says 'Use it when a user pastes a docs link or names a page directly,' providing clear context. Could improve by mentioning when not to use it (e.g., non-docs URLs), but overall adequate.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool has a clear, distinct purpose: two fetch variants (by id vs by URL), one for listing the table of contents, and one for searching. No overlap or ambiguity.

Naming Consistency5/5

All tool names use lowercase verb_noun pattern (fetch, get_page, list_docs, search), consistent and predictable.

Tool Count4/5

Four tools is on the minimal side but provides essential documentation operations: search, list, and two fetch methods. Slightly more could be added (e.g., get categories) but the set is not insufficient.

Completeness4/5

The tool surface covers the main use cases: discovering docs, searching, and retrieving content. No major gaps, though a tool to list only categories or tags could enhance exploration.

Resources