Skip to main content
Glama

ingest_url_data_source

Create a new data source by fetching a public URL on the server side. Handles CSV, TSV, JSON, Excel, TXT, and PDF. Private networks (RFC 1918, loopback, cloud metadata) are blocked. Returns the data_source_id once preprocessing has started. Use this for files larger than the 25 MB inline upload cap.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesPublic http(s) URL of the file to ingest. The server fetches it once at call time; the URL is not re-fetched on subsequent analyses. Private networks (RFC 1918, loopback, link-local, cloud metadata) are blocked.
nameYesDisplay name for the new data source.
formatNoOptional format hint. If omitted, the server infers it from the Content-Type header and URL extension.
descriptionNoOptional human note stored on the data source.
wait_secondsNoSeconds to block waiting for preprocessing before returning. 0 returns immediately.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
formatYesDetected file format (csv, json, xlsx, ...).
statusYesPreprocessing status. Poll get_data_source_schema until "active".
web_urlNo
raw_data_idYes
bytes_fetchedYes
data_source_idYes

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate the write and non-idempotent nature. The description adds valuable context: the fetch is server-side, private networks are blocked, returns the data_source_id once preprocessing starts (indicating async), and the URL is fetched only once. These details go beyond annotations and set accurate expectations.

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 compact and well-structured: primary action first, then formats, security constraints, return value, and usage guideline. Every sentence contributes useful information without redundancy or padding.

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 the tool's complexity (5 params, async behavior, security constraints) and the presence of an output schema, the description covers all key aspects: purpose, formats, limitations, return behavior, and when to use. Minor details like failure modes are left out but are likely covered by the output schema or are non-essential.

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 all parameters are already documented in the input schema. The description reinforces the 'url' behavior (public fetch, blocking) and 'format' hint but adds little new semantic value beyond schema. A baseline of 3 is appropriate when schema carries the load.

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 begins with a specific verb and resource ('Create a new data source'), explains the method ('fetching a public URL on the server side'), lists supported formats, and distinguishes from siblings by mentioning the 25 MB upload cap and the 'upload_data_source' alternative context. This clearly identifies what the tool does and sets it apart.

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?

The description explicitly states when to use this tool ('files larger than the 25 MB inline upload cap') and implicitly contrasts with the upload alternative. It also states a key limitation: private networks are blocked, implying those URLs should not be used. Though the sibling tool is not named, the guidance is clear and actionable.

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

A3.9/5.0
Disambiguation4/5

Tools are generally distinct by resource and action, but a few status polling tools (check_integration_status, get_analysis_status) could be confused without careful reading; descriptions clarify the difference.

Naming Consistency4/5

Most tools use a consistent verb_noun snake_case pattern, but there is minor variation (e.g., 'check' vs 'get' for status, and some compound nouns like 'request_oauth_integration_url').

Tool Count4/5

26 tools is slightly above the typical range but appropriate for a comprehensive BI platform covering data ingestion, analysis, forecasting, reports, dashboards, and account management; each tool has a clear purpose.

Completeness2/5

The tool surface is heavily read-oriented, lacking update and delete operations for most resources (data sources, dashboards, reports, forecasts). This leaves significant lifecycle management gaps for an agent.

Resources