Skip to main content
Glama
Jasuni69

Microsoft Fabric MCP Server

by Jasuni69

load_data_from_url

Pull data from a CSV or Parquet URL into a Delta table in Microsoft Fabric, using a lakehouse or warehouse destination.

Instructions

Load data from a URL into a delta table in a lakehouse via OneLake.

Args:
    url: The URL to download data from (CSV or Parquet supported).
    destination_table: The name of the table to load data into.
    workspace: Name or ID of the workspace (optional).
    lakehouse: Name or ID of the lakehouse (optional).
    warehouse: Name or ID of the warehouse (optional, uses SQL for warehouses).
    ctx: Context object containing client information.
Returns:
    A string confirming the data load or an error message.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
lakehouseNo
warehouseNo
workspaceNo
destination_tableYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses the return shape ('a string confirming the data load or an error message') and supported formats, but omits the critical write semantics: whether destination_table is appended to, replaced, or required to not exist. It also does not state preconditions such as an established workspace/lakehouse context, auth requirements, or behavior on format mismatch.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a compact, well-structured docstring: a one-line summary front-loads the action, followed by a scannable Args list and a Returns line. Every line earns its place, though the ctx entry is arguably noise for user guidance since it is not part of the input schema.

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

Completeness3/5

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

For a tool with no annotations and no output schema, the description provides the essentials: purpose, every parameter, return value, and source format support. However, it omits behavior an agent needs to call it safely and correctly: what happens to existing data in destination_table (append vs. overwrite vs. error), whether the tool creates tables, and whether a prior set_workspace/set_lakehouse/set_warehouse context is required given those sibling tools exist.

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?

Schema description coverage is 0%, and the description largely compensates: all 5 schema parameters are documented with meaning beyond their types. The url entry adds format constraints ('CSV or Parquet supported'), destination_table describes its role, and warehouse adds a notable nuance ('uses SQL for warehouses'). Minor deduction: the docstring also lists ctx, which is not an invokable schema parameter, and the entries are terse with no examples or constraints.

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 opening line states a specific verb and resource: 'Load data from a URL into a delta table in a lakehouse via OneLake.' It names the source (URL), the destination (delta table), the mechanism (OneLake), and the supported formats (CSV or Parquet). This clearly distinguishes it from siblings like onelake_write, sql_query, or vacuum_delta.

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

Usage Guidelines2/5

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

No when-to-use or when-not-to-use guidance is given, and no alternative sibling is named. The only contextual hint is the warehouse arg note ('uses SQL for warehouses'), which implies a warehouse-targeting mode but never states a condition that should route an agent to a different tool. The agent must infer appropriateness from the name alone.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jasuni69/ms-core-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server