Foundry Toolbox Ops

Foundry Toolbox Ops is a skill for Claude Code, Codex from microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents. It costs 32 tokens per session (2,584 once invoked), scanned A, original, MIT.

A guide for operating Microsoft Foundry Toolbox configurations and hosted agents. It focuses on runtime settings, connected tools, versions, and the agents that use them.

In plain words
What is it for?
Use it to inspect, version, recreate, and smoke-test Foundry Toolbox resources and Foundry-hosted agents for the Fibey project.
Why use it?
It provides a consistent way to inspect and test the setup an agent depends on instead of writing new agent code.

Skill for Claude CodeCodex ✓ vendor

Written for no agent in particular: nothing here depends on one.

Good fit Use it to inspect, version, recreate, and smoke-test Foundry Toolbox resources and Foundry-hosted agents for the Fibey project.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/foundry-toolbox
About the project

microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents contains Microsoft Build 2026 session resources about connecting AI agents to tools, APIs, and documents through governed tool selection. It is intended for developers building agents that need efficient access to MCP servers, A2A, OpenAPI, connectors, built-in tools, and structured content from multimodal files. The catalogue add-ons are session instructions for exploring these agent-building patterns.

microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents · 10 stars · on GitHub · build.microsoft.com

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents --skill foundry-toolbox
Clone the repo
git clone --depth 1 https://github.com/microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Foundry Toolbox Ops

README.md
[![agentmods](https://agentmods.dev/badge/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/foundry-toolbox/github.svg)](https://agentmods.dev/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/foundry-toolbox)
Your own site
<a href="https://agentmods.dev/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/foundry-toolbox"><img src="https://agentmods.dev/badge/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/foundry-toolbox/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for Foundry Toolbox Ops

Your own site · 80×15
<a href="https://agentmods.dev/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/foundry-toolbox"><img src="https://agentmods.dev/badge/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/foundry-toolbox.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,584 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00032 $0.02584
Opus 5 $0.00016 $0.01292
Sonnet 5 $0.00006 $0.00517
Haiku 4.5 $0.00003 $0.00258

Measured 12d ago against content hash df1d98b2a372, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

Foundry Toolbox Ops scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Get a token to use in `curl` calls:
src/fibey/.github/skills/foundry-toolbox/SKILL.md · 216 lines

How it starts

The opening of the file, as written. The whole thing — 216 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Foundry Toolbox Ops Skill

You are a specialist for operating the Foundry Toolbox and Foundry-hosted agents this project depends on. You don't write new agent code — that's the Agent Developer skill. You focus on the runtime configuration: toolbox versions, the connections inside them, the tools they expose, and the hosted agent that consumes them.

Mental model

Foundry account (e.g. ai-fibey)
  └─ Project (e.g. fibey-project-westus2)
       ├─ Connections/        (CognitiveSearch, OpenAPI, MCP, ...)
       │     └─ fibey-search   ← used by the knowledge_base tool
       │
       ├─ Toolboxes/          (logical container)
       │     └─ fibey/
       │          ├─ versions/   immutable snapshots (v1, v2, ...)
       │          └─ default_version: "1"
       │
       └─ Agents/
             └─ fibey-agent     references a toolbox via MCP URL

The agent connects via a versioned MCP URL:

{FOUNDRY_PROJECT_ENDPOINT}/toolboxes/{name}/versions/{n}/mcp?api-version=v1

Critical: the unversioned URL …/toolboxes/{name}/mcp always serves v1 regardless of newer versions or what default_version says. Prefer the versioned URL when pinning the agent to a specific version. The agent auto-appends ?api-version=v1 if missing (see src/fibey/agent/agent.py).

Key facts

  • Foundry data-plane API version: v1.
  • AAD scope for data-plane: https://ai.azure.com/.default (NOT cognitiveservices.azure.com — that returns 401).
  • Toolbox also accepts the Cognitive Services account key via the api-key header — Ocp-Apim-Subscription-Key returns 401. We use this for the deployed agent-service to avoid RBAC quota churn (see TOOLBOX_API_KEY env var and _ToolboxApiKeyAuth in agent.py).
  • Toolbox creation: POST /toolboxes/{name}/versions. POST /toolboxes and PUT /toolboxes/{name} both return HTTP 405.
  • Connection auth that works for AI Search: CognitiveSearch + ApiKey
    • Foundry tool type azure_ai_search. The combination RemoteTool + ProjectManagedIdentity pointing at a KB MCP endpoint returns HTTP 403.
  • Subscription 921496dc-... has historically been near its 4000-role-assignment cap. Prefer API-key auth on the toolbox → CognitiveSearch connection over granting fresh RBAC where possible.

Read the full file on GitHub · 216 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 216 lines · 32 tokens per session scan A df1d98b2a372

Subscribe to this mod's changes

Foundry Toolbox Ops is a skill published in the GitHub repository microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents (10 stars, last pushed 24d ago), licensed MIT. It adds 32 tokens to every session and 2,584 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

azure-reliability

Assess and improve the reliability posture of PaaS Applications (Azure Functions and Azure App Service). Scans deployed resources for zone redundancy, ZRS storage, health probes, and multi-region failover. Presents a feature-pivoted checklist, then drives staged remediation (CLI or IaC patches) end-to-end with user…

microsoft/skills · 118 tokens

azure-mgmt-applicationinsights-dotnet

Azure Application Insights SDK for .NET. Application performance monitoring and observability resource management. Use for creating Application Insights components, web tests, workbooks, analytics items, and API keys. Triggers: "Application Insights", "ApplicationInsights", "App Insights", "APM", "application…

microsoft/skills · 82 tokens

azure-resource-manager-mysql-dotnet

Azure MySQL Flexible Server SDK for .NET. Database management for MySQL Flexible Server deployments. Use for creating servers, databases, firewall rules, configurations, backups, and high availability. Triggers: "MySQL", "MySqlFlexibleServer", "MySQL Flexible Server", "Azure Database for MySQL", "MySQL database…

microsoft/skills · 87 tokens

scaffold

Generate deployment-ready infrastructure code from an architecture plan, verify it with adversarial self-review, and bridge to validation — all without deploying.

microsoft/skills · 0 tokens

azure-kubernetes-automatic-readiness

Assess Kubernetes workloads and cluster configuration for AKS Automatic compatibility. Identifies incompatibilities, generates fixes, and guides migration from AKS Standard to AKS Automatic. WHEN: migrate to AKS Automatic, check AKS Automatic readiness, validate manifests for Automatic, assess cluster for Automatic…

microsoft/skills · 87 tokens

azure-eventhub-dotnet

Azure Event Hubs SDK for .NET. Use for high-throughput event streaming: sending events (EventHubProducerClient, EventHubBufferedProducerClient), receiving events (EventProcessorClient with checkpointing), partition management, and real-time data ingestion. Triggers: "Event Hubs", "event streaming"…

microsoft/skills · 94 tokens