Skip to content

Commit 066e7f2

Browse files
committed
fix: remove git clone step, use MCP config only (no external repo cloning)
1 parent c610694 commit 066e7f2

1 file changed

Lines changed: 19 additions & 17 deletions

File tree

plugins/fabric-data-agent/README.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,30 +14,32 @@ This plugin provides an agent and three skills for managing Fabric Data Agents t
1414
## Prerequisites
1515

1616
- Azure CLI (`az login`) for Fabric API authentication
17+
- [uv](https://docs.astral.sh/uv/) — Python package runner (for the MCP server)
1718
- Fabric workspace access (Contributor role)
1819

1920
## Setup — Connect the MCP Server
2021

21-
This plugin requires the **Fabric Data Agent MCP server** to provide the tools Copilot uses. Set it up in 3 steps:
22-
23-
### 1. Clone the repo
24-
25-
```bash
26-
git clone https://github.com/harigouthami/fabric-copilot-plugins.git
27-
cd fabric-copilot-plugins/fabric-data-agent-mcp
28-
```
29-
30-
### 2. Run setup
31-
32-
```powershell
33-
.\setup.ps1
22+
This plugin requires the **Fabric Data Agent MCP server** to provide the tools Copilot uses.
23+
24+
Add this to your `.vscode/mcp.json`:
25+
26+
```json
27+
{
28+
"servers": {
29+
"fabric-data-agent": {
30+
"command": "uvx",
31+
"args": [
32+
"--from", "git+https://github.com/harigouthami/fabric-copilot-plugins.git#subdirectory=fabric-data-agent-mcp",
33+
"fabric-data-agent-mcp"
34+
]
35+
}
36+
}
37+
}
3438
```
3539

36-
This installs `uv` (if needed), verifies your Azure CLI login, and configures `.vscode/mcp.json` automatically.
37-
38-
### 3. Reload VS Code
40+
Then reload VS Code (`Ctrl+Shift+P`**"Reload Window"**) — the 20 MCP tools will appear in Copilot Chat.
3941

40-
`Ctrl+Shift+P`**"Reload Window"** — the MCP server tools will appear in Copilot Chat.
42+
> No cloning or manual installation needed. `uvx` automatically fetches, installs, and runs the MCP server.
4143
4244
## Example Usage
4345

0 commit comments

Comments
 (0)