Skip to main content
Glama
Jasuni69

Microsoft Fabric MCP Server

by Jasuni69

create_warehouse

Create a new warehouse in Microsoft Fabric by specifying a name and optional workspace, description, or folder. Use it to provision dedicated SQL analytics storage for your data.

Instructions

Create a new warehouse in a Fabric workspace.

Args:
    name: Name of the warehouse
    workspace: Name or ID of the workspace (optional)
    description: Description of the warehouse (optional)
    ctx: Context object containing client information
Returns:
    A string confirming the warehouse has been created or an error message.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
folder_idNo
workspaceNo
descriptionNo

Schema Changelog

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

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

There are no annotations, so the description carries the full behavioral burden. It discloses the return value (confirmation or error string), which is helpful, but it does not mention side effects, idempotency, duplicate handling, permissions, or what happens when optional fields are omitted.

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 compact and front-loaded with the core purpose. The Args/Returns structure is scannable, though the Args list partially duplicates the schema and includes an extra 'ctx' entry.

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

Completeness2/5

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

For a create operation with no annotations and no output schema, the description should clarify more behavior. It fails to mention folder_id, does not explain the default workspace behavior when workspace is omitted, and introduces a 'ctx' argument not present in the schema. The return description is useful but not enough to make the tool fully self-contained.

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 0%, so the description must compensate. It adds meaning for name, workspace, and description by explaining their roles and optionality. However, it omits folder_id entirely and lists a 'ctx' parameter that does not appear in the input schema, creating potential confusion.

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 states a clear verb ('Create'), a specific resource ('a new warehouse'), and a context ('in a Fabric workspace'). It is immediately distinguishable from sibling tools like create_lakehouse and create_workspace because the resource is explicit.

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 guidance is provided about when to use this tool versus alternatives, nor prerequisites such as setting a workspace first. The description only notes that workspace is optional, but does not explain the implications of omitting it or how this relates to sibling tools like set_workspace or create_lakehouse.

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