Skip to main content
Glama

Add Url

add_url

Downloads a web page, extracts its main content, and saves it to loom-memory; invoke only on explicit request.

Instructions

Télécharge une page web, en extrait le contenu principal et l'ajoute à la mémoire. Le titre est celui de la page. N'appeler QUE si Denis le demande explicitement dans son message courant ; jamais de ta propre initiative.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesURL http(s) de la page.
tagsNoTags optionnels.
projectYesProjet de rattachement.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
chunksYes
doc_idYes
projectYes
updatedNoTrue si un document existant a été remplacé.
duplicate_ofNodoc_id d'un document au contenu identique ; rien n'a été écrit.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

A3.8/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 behavioral burden and does disclose useful traits: it downloads, extracts main content, and derives the title from the page. However, it says nothing about failure modes (unreachable/blocked URLs), permissions, deduplication, or rate limits, leaving meaningful gaps for a mutation tool.

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?

Three short sentences, front-loaded with the purpose before the usage restriction. No filler; every sentence carries either behavior or a constraint.

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?

An output schema exists so return values need not be described, and the description covers purpose, internal behavior, and usage conditions. It is nearly complete, with only edge-case handling left unstated.

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 url, tags, and project are already documented in the schema. The description adds no parameter-level detail such as URL format expectations beyond http(s) or how tags/project affect storage, so the baseline 3 applies.

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 names a specific multi-step operation: download a web page, extract its main content, and add it to memory, with the title taken from the page. This clearly separates it from add_text and add_file siblings, though it doesn't explicitly name those alternatives by name.

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?

It gives an explicit and unusually strong usage constraint: call ONLY if Denis explicitly asks in his current message, never on your own initiative. This is a clear when/when-not rule, but it does not point to a concrete alternative tool for the cases where you shouldn't use this one.

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