FabricIQ MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FabricIQ MCP ServerShow me the average cycle time for completed projects."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FabricIQ stdio MCP Server
Exposes a published Microsoft Fabric Data Agent as a native MCP tool
(query_fabric_agent) over stdio, so an MCP client (VS Code, GitHub Copilot
CLI, Microsoft Scout, etc.) can call it directly instead of shelling out to a
script per question.
This is the sibling project to
foundryiq-rfp-kb — same design pattern (stdio MCP
server, fresh Azure CLI token per call, per-workspace config.json), but
targets a Fabric Data Agent's OpenAI-compatible Assistants endpoint instead of
an Azure AI Search knowledge base.
A fresh Azure AD access token (scoped to https://api.fabric.microsoft.com)
is minted on every tool call via the Azure CLI
(az account get-access-token) — nothing is hardcoded and the token never
goes stale.
What it calls
The tool talks directly to the Fabric Data Agent's OpenAI-compatible Assistants API (this skips the Foundry "connected tool" hop, which can add 10-15 min of latency/timeouts when the agent is invoked indirectly):
https://api.fabric.microsoft.com/v1/workspaces/<ws>/dataagents/<id>/aiassistant/openaiProtocol per query (api-version=2024-05-01-preview):
assistants.create(model="not used")— model field is ignored by Fabricthreads.create()threads.messages.create(role="user", content=question)threads.runs.create(assistant_id=...)poll
runs.retrieveuntil status is terminalthreads.messages.list(order="desc")→ latest assistant messagethreads.delete— cleanup
Related MCP server: lucid-mcp
Prerequisites
Python 3.10+
Azure CLI installed and logged in:
az loginYour account needs at least Viewer access on the Fabric workspace hosting the data agent (and read access to its underlying data sources). The server requests a token for the workspace's specific tenant, so it works even if that tenant differs from your CLI's active tenant/subscription.
Setup
Create and activate a virtual environment:
python -m venv .venv .\.venv\Scripts\Activate.ps1Install dependencies:
pip install -r requirements.txtCopy
config.example.jsontoconfig.jsonand fill in your Fabric data agent details:Copy-Item config.example.json config.json{ "endpoint": "https://api.fabric.microsoft.com/v1/workspaces/<ws>/dataagents/<id>/aiassistant/openai", "api_version": "2024-05-01-preview", "token_resource": "https://api.fabric.microsoft.com", "tenant_id": "<tenant-guid>", "subscription_id": "", "poll_timeout": 600, "poll_interval": 3 }endpointis the published URL from the data agent's Publish pane in Fabric (ends in/aiassistant/openai).tenant_idis the tenant where the Fabric workspace lives — set it whenever that differs from your CLI's default login context (prevents cross-tenant 401 errors);subscription_idis an optional fallback used only whentenant_idis empty (the two are mutually exclusive foraz account get-access-token).config.jsonis gitignored — it holds your real values and should never be committed.
Running standalone (sanity check)
The server speaks MCP JSON-RPC over stdio, so running it directly will just block waiting for input on stdin — that's expected:
.\.venv\Scripts\python.exe fabriciq_mcp_server.py --config config.jsonPress Ctrl+C to stop. This only confirms the process starts without
import/config errors; normally an MCP client launches and drives it.
You can also run a one-shot CLI query without an MCP client, for a quick smoke test:
.\.venv\Scripts\python.exe fabriciq_query.py "What was the average LTIFR across completed manufacturing projects?"Registering with an MCP client
VS Code (mcp.json)
A .vscode/mcp.json is already included in this repo:
{
"servers": {
"fabriciq": {
"type": "stdio",
"command": "${workspaceFolder}/.venv/Scripts/python.exe",
"args": [
"${workspaceFolder}/fabriciq_mcp_server.py",
"--config",
"${workspaceFolder}/config.json"
]
}
}
}GitHub Copilot CLI (and Microsoft Scout, which rides on it)
The Copilot CLI reads its MCP server registrations from
~/.copilot/mcp-config.json (i.e. C:\Users\<you>\.copilot\mcp-config.json
on Windows). Add a fabriciq entry there alongside any existing servers
(e.g. foundryiq):
{
"mcpServers": {
"fabriciq": {
"type": "local",
"command": "C:\\Users\\sansri\\stdio-mcpservers\\fabriciq-rfp-kpis-mcp\\.venv\\Scripts\\python.exe",
"args": [
"C:\\Users\\sansri\\stdio-mcpservers\\fabriciq-rfp-kpis-mcp\\fabriciq_mcp_server.py",
"--config",
"C:\\Users\\sansri\\stdio-mcpservers\\fabriciq-rfp-kpis-mcp\\config.json"
],
"tools": ["query_fabric_agent"]
}
}
}Note the schema differs from VS Code's mcp.json: Copilot CLI uses
"mcpServers" (not "servers") and "type": "local" (not "stdio"), but
the mechanism is identical — a local subprocess over stdin/stdout, no
URL/port involved. Restart Scout / start a new Copilot CLI session after
editing this file for the change to take effect.
Microsoft Scout "Add MCP Server" dialog (GUI alternative)
Scout also has a GUI front-end for the same mcp-config.json — if you'd
rather not hand-edit the file, use its Add MCP Server dialog instead
(check first whether fabriciq already shows up in Scout's server list from
the file edit above; if so, skip this to avoid a duplicate registration):
Name:
fabriciq-rfp-kpis-mcpRemote/Local: Command
Command (paste as one combined string):
C:\Users\sansri\stdio-mcpservers\fabriciq-rfp-kpis-mcp\.venv\Scripts\python.exe C:\Users\sansri\stdio-mcpservers\fabriciq-rfp-kpis-mcp\fabriciq_mcp_server.py --config C:\Users\sansri\stdio-mcpservers\fabriciq-rfp-kpis-mcp\config.jsonEnvironment variables: leave blank (auth comes from your existing
az loginsession, not env vars)Tool-call timeout: the Fabric Assistants API run can take noticeably longer than a search retrieval. Bump this above the default (~60s) — 120–180s is a reasonable starting point, or match
poll_timeoutfromconfig.json(default 600s) if Scout allows it.
Microsoft Scout skill (SKILL.md)
This repo includes SKILL.md — a Scout skill that teaches the
agent how to use the registered fabriciq-rfp-kpis-mcp-query_fabric_agent
MCP tool correctly (call it directly instead of shelling out, when to use it
vs. a document/search knowledge base, treat a "no exact match" reply as valid
free text rather than an error, never fabricate numbers, etc.).
Registering the MCP server (steps above) is not enough on its own — Scout needs this skill imported separately so the agent knows these usage rules exist and when to invoke the tool. Two things have to both be true for Scout to use this correctly:
The
fabriciqMCP server is registered in~/.copilot/mcp-config.json(see the GitHub Copilot CLI section above) — this is what makes thefabriciq-rfp-kpis-mcp-query_fabric_agenttool exist at all.SKILL.md is imported into Scout's Skills/Extensions. Add this skill via Scout's extensions/skills UI (import from this repo path) so the skill's
name/descriptionfrontmatter is indexed and Scout knows to route Fabric/KPI questions through this tool with the correct calling convention.
After importing, restart Scout (or start a new session) so it re-discovers both the MCP tool and the skill.
Other MCP clients
Point the client's server registration at the same venv Python + script +
--config path shown above. Use absolute paths so the server resolves
correctly regardless of the client's working directory.
Config resolution order
--config flag → FABRICIQ_CONFIG env var → config.json in the process's
current working directory. Individual FABRICIQ_* env vars
(FABRICIQ_ENDPOINT, FABRICIQ_TENANT_ID, FABRICIQ_SUBSCRIPTION_ID,
FABRICIQ_API_VERSION, FABRICIQ_TOKEN_RESOURCE, FABRICIQ_POLL_TIMEOUT,
FABRICIQ_POLL_INTERVAL) override individual fields on top of whatever
config file was loaded.
Exposed tool
query_fabric_agent(question: str) -> str— runs the Fabric Data Agent's Assistants-API conversation and returns the raw text answer. Intended for quantified project intelligence: KPI outcomes (OEE, LTIFR, TRIR, defect rates), financial data (cost variance, gross margin, change orders), risk register entries, milestone schedule data, certifications, client satisfaction scores. Not intended for narrative case-study text — use a document/search knowledge base (likefoundryiq-rfp-kb) for that. A "couldn't find matching data" reply is valid free text from the agent, not a structural error — the caller decides what it means.
Troubleshooting
Failed to acquire Fabric access token. Run 'az login' first.— your CLI session expired or doesn't have access to the tenant/subscription inconfig.json. Re-runaz login(andaz login --tenant <tenant_id>if needed).401 / authentication failed — check
tenant_idand that your account has access to the Fabric workspace hosting the data agent.403 / access denied — ensure your account has at least Viewer permission on the Fabric workspace and read access to the data agent's underlying data sources.
Fabric run polling exceeded
<n>s — the agent took longer thanpoll_timeout(default 600s) to finish. Increasepoll_timeoutinconfig.jsonif your queries are genuinely heavy.No config found — ensure
config.jsonexists next to the script, or pass--config <path>/ setFABRICIQ_CONFIG.Stray output breaking the client — all logging must go to stderr (this is already handled in
fabriciq_mcp_server.py); don't addprint()calls that write to stdout.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/MSFT-Innovation-Hub-India/fabriciq-mcp-stdio'
If you have feedback or need assistance with the MCP directory API, please join our Discord server