Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions plugin/.mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
"command": "npx",
"args": ["-y", "@azure/mcp@latest", "server", "start"]
},
"foundry-mcp": {
"type": "http",
"url": "https://mcp.ai.azure.com"
},
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"]
Expand Down
2 changes: 1 addition & 1 deletion plugin/skills/microsoft-foundry/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: "Deploy, evaluate, and manage Foundry agents end-to-end: Docker bui
license: MIT
metadata:
author: Microsoft
version: "1.0.3"
version: "1.0.4"
---

# Microsoft Foundry Skill
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Agent Observability Loop

Orchestrate the full eval-driven optimization cycle for a Foundry agent. This skill manages the **multi-step workflow** — auto-creating evaluators, generating test datasets, running batch evals, clustering failures, optimizing prompts, redeploying, and comparing versions. Use this skill instead of calling individual foundry-mcp evaluation tools manually.
Orchestrate the full eval-driven optimization cycle for a Foundry agent. This skill manages the **multi-step workflow** — auto-creating evaluators, generating test datasets, running batch evals, clustering failures, optimizing prompts, redeploying, and comparing versions. Use this skill instead of calling individual `azure` MCP evaluation tools manually.

## When to Use This Skill

Expand All @@ -12,7 +12,7 @@ USE FOR: evaluate my agent, run an eval, test my agent, check agent quality, run

| Property | Value |
|----------|-------|
| MCP server | `foundry-mcp` |
| MCP server | `azure` |
| Key MCP tools | `evaluation_agent_batch_eval_create`, `evaluator_catalog_create`, `evaluation_comparison_create`, `prompt_optimize`, `agent_update` |
| Prerequisite | Agent deployed and running (use [deploy skill](../deploy/deploy.md)) |

Expand Down
2 changes: 1 addition & 1 deletion tests/microsoft-foundry/foundry-agent/observe/unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe("observe - Unit Tests", () => {

test("contains Quick Reference table", () => {
expect(observeContent).toContain("## Quick Reference");
expect(observeContent).toContain("foundry-mcp");
expect(observeContent).toContain("azure");
});
});

Expand Down
Loading