Skip to main content
Glama

Import Public Source

source.import
Read-onlyIdempotent

Fetch a public website URL and extract a structured brief with business name, description, contact links, and suggested page blocks. Only works with public HTTP/HTTPS pages. Does not bypass login, CAPTCHA, or paywalls. Returns extracted fields and suggestedBlocks for use with page.create_from_brief.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
localeNoPreferred output locale if obvious from the conversation, such as es or en.
sourceUrlYesPublic http/https source URL to import.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
briefYes
finalUrlYes
warningsYes
extractedYes
fetchModeYes
sourceUrlYes
confidenceYes
suggested_blocksYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds valuable limitations (no bypassing auth/paywalls) and explains the exact return usage ('Returns extracted fields and suggestedBlocks for use with page.create_from_brief'), which goes beyond the structured annotations.

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 efficient and front-loaded: the first sentence states the core operation and outputs. Each subsequent sentence contributes key information (constraints, limitations, integration) without redundancy. Four sentences total, no wasted words.

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

Completeness5/5

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

Given the presence of an output schema and annotations, the description provides sufficient context: it explains the tool's position in the workflow (feeds page.create_from_brief), discloses non-obvious limitations, and clarifies the expected return value. No significant gaps remain for an agent to invoke correctly.

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%, with both params (sourceUrl and locale) already documented. The description reinforces sourceUrl's requirement ('public HTTP/HTTPS') but does not add new param-specific details, so it stays at the baseline for schema-complete cases.

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 clearly states the tool's function: 'Fetch a public website URL and extract a structured brief' with specific outputs (business name, description, contact links, suggested blocks). This distinguishes it from siblings like page.create and page.create_from_brief by focusing on the source importing step.

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?

Provides explicit constraints: 'Only works with public HTTP/HTTPS pages' and 'Does not bypass login, CAPTCHA, or paywalls.' It also mentions integration with page.create_from_brief, implying a workflow, though it does not explicitly name alternative tools for other scenarios.

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.1/5.0
Disambiguation4/5

Most tools target distinct resources and actions (blocks, accounts, pages), but page.create and page.create_from_brief both create pages, and page.intake.start vs page.onboarding.start/update are overlapping planning helpers. The detailed descriptions help disambiguate, though an agent might still pause on choosing between them.

Naming Consistency5/5

All tool names follow a consistent lowercase dot-separated resource.action pattern (e.g., block.add, page.publish, account.whoami). Nested resources like page.header.update and page.onboarding.update extend the same rule without mixing conventions.

Tool Count3/5

At 23 tools, the count sits in the borderline 16-25 range. Many tools are specific and justified, but the planning helpers (intake/onboarding) and multiple page creation variants add bulk that could be consolidated.

Completeness3/5

The server covers create, read, update, block management, and publish/unpublish, but misses a page.delete operation, leaving a lifecycle dead-end. Account tools are also minimal, limited to reading/listing without management capabilities.

Resources