{"id":58048,"date":"2026-07-25T12:02:56","date_gmt":"2026-07-25T02:02:56","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/"},"modified":"2026-07-25T12:04:25","modified_gmt":"2026-07-25T02:04:25","slug":"building-microsoft-foundry-agents-with-microsoft-agent-framework","status":"publish","type":"post","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/","title":{"rendered":"Building Microsoft Foundry Agents with Microsoft Agent Framework"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In this blog post <strong>Building Microsoft Foundry Agents with Microsoft Agent Framework<\/strong> we will explain how these technologies work together and how to turn a promising AI demonstration into a secure, useful business system.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p class=\"wp-block-paragraph\">Many organisations already have an AI prototype that can answer questions. The difficulty begins when it needs to access company data, update a service ticket, remember a conversation or complete a task without creating a security and compliance problem.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is where Microsoft Foundry and Microsoft Agent Framework can help. Foundry provides the managed Azure environment for models, agents, identity, tools and monitoring. Agent Framework provides the software building blocks developers use to control how an agent reasons, calls business systems and moves through a workflow.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a Microsoft Foundry agent<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A Microsoft Foundry agent is an AI application that can interpret a request, decide what information or tools it needs and complete one or more steps towards a defined goal.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Unlike a basic chatbot, an agent can do more than generate text. It might search approved company documents, check the status of an order, prepare a customer response or create a service desk ticket.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Every useful agent has three core elements:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>A model<\/strong> that interprets language and decides what to do next.<\/li>\n<li><strong>Instructions<\/strong> that define the agent\u2019s role, boundaries and expected behaviour.<\/li>\n<li><strong>Tools<\/strong> that give the agent controlled access to information and business actions.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Microsoft Agent Framework connects these elements. It supports individual agents, multi-agent workflows, conversation state, memory, tool approvals and connections to services such as Microsoft Foundry, Azure OpenAI, OpenAI and Anthropic.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For a broader explanation of why this framework matters, read what Microsoft Agent Framework means for real-world AI delivery.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why most agent projects struggle after the demonstration<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A demonstration usually has one user, limited data and no serious consequences if the answer is wrong. Production is different.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A real agent must know who the user is, which records they can access, which actions require approval and what should happen if a system is unavailable. The organisation also needs records of what the agent did and why.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Without these controls, a convenient AI assistant can become another form of uncontrolled access to sensitive information.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The goal is therefore not to create the most autonomous agent possible. It is to automate the right tasks while keeping important decisions visible, limited and reversible.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Choose the right Foundry agent pattern<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">There are several ways to combine Foundry with Agent Framework. The right choice depends on how much control, versioning and managed infrastructure your organisation needs.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Code-first agents<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A code-first agent defines its model, instructions and tools inside the application. This is usually the simplest starting point because developers can test changes quickly and keep the agent close to existing business logic.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This approach suits an internal assistant, a focused workflow or an agent being added to an existing web application.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Versioned Foundry agents<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A versioned agent is managed through Microsoft Foundry. Its definition can be reviewed, tested and released as a controlled version rather than changed informally inside application code.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is valuable when several applications use the same agent or when governance teams need a clear record of what was running at a particular time.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Hosted agents<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Hosted agents allow custom Agent Framework code to run on Microsoft-managed infrastructure. Foundry can handle areas such as scaling, agent identity, session persistence and lifecycle management.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This reduces infrastructure work, but it does not remove the need for sound design. The permissions, tools, data access and approval rules still need to match the business risk.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A practical starting architecture<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A production agent should be designed in layers. This makes it easier to change a model or interface without rebuilding the entire solution.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Business interface<\/strong> such as a secure web application, Microsoft Teams experience or internal portal.<\/li>\n<li><strong>Agent instructions<\/strong> defining the task, limits, response format and escalation rules.<\/li>\n<li><strong>Agent Framework<\/strong> managing conversations, tool calls, workflows and approvals.<\/li>\n<li><strong>Foundry services<\/strong> providing models, managed agent capabilities, identity and monitoring.<\/li>\n<li><strong>Business systems<\/strong> such as Microsoft 365, SharePoint, a CRM, ERP or service desk.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If the agent needs to work across existing applications, our guide to connecting Microsoft Foundry agents to business systems covers the integration decisions in more detail.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Building a simple agent in .NET<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The following example shows the basic shape of a code-first Foundry agent. It uses Microsoft Entra ID for authentication rather than placing a permanent access key in the application.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>dotnet add package Azure.Identity\ndotnet add package Microsoft.Agents.AI.Foundry --prerelease<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>using Azure.AI.Projects;\nusing Azure.Identity;\nusing Microsoft.Agents.AI;\n\nvar endpoint = Environment.GetEnvironmentVariable(&quot;FOUNDRY_PROJECT_ENDPOINT&quot;);\nvar model = Environment.GetEnvironmentVariable(&quot;FOUNDRY_MODEL&quot;);\n\nAIAgent agent = new AIProjectClient(\n new Uri(endpoint!),\n new DefaultAzureCredential())\n .AsAIAgent(\n model: model!,\n name: &quot;ServiceDeskAssistant&quot;,\n instructions: &quot;Help employees diagnose common IT issues. &quot; +\n &quot;Use approved tools only. Never reset an account &quot; +\n &quot;or change access without user confirmation.&quot;);\n\nvar response = await agent.RunAsync(\n &quot;I cannot access the finance application.&quot;);\n\nConsole.WriteLine(response);<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This code is intentionally simple. It establishes the agent\u2019s identity, selected model and operating instructions. Package names and release status should always be checked before a production deployment because agent technology is developing quickly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The next step is not adding a larger prompt. It is adding tightly controlled tools.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Give the agent the minimum access it needs<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A tool is a function the agent can call, such as looking up a knowledge article or creating a ticket. Each tool should perform one clearly defined task and validate every request before acting.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Start with read-only tools. For example, allow the agent to search approved support documents before allowing it to reset passwords, modify customer records or send external messages.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Actions with financial, security or customer impact should require human approval. Agent Framework supports approval points, allowing the agent to prepare an action while leaving the final decision with an authorised person.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This approach also supports the intent of the Essential Eight, the Australian government\u2019s cybersecurity framework that many organisations use as their security baseline. Agent identities should use multi-factor authentication where appropriate, restricted administrative privileges and carefully managed application access.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A realistic business scenario<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Consider a 200-person professional services company receiving hundreds of repetitive IT requests each month. Employees wait for support while the IT team repeatedly answers questions about software access, Microsoft 365 and common device problems.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A Foundry agent could search approved internal instructions, ask diagnostic questions and create a correctly categorised ticket when it cannot resolve the issue. It could prepare an access request, but a manager or IT administrator would still approve the actual change.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The business outcome is not simply \u201cusing AI\u201d. Employees receive help sooner, the IT team spends less time sorting basic requests and risky changes remain under human control.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Plan for privacy, testing and cost from day one<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Do not wait until launch to ask what information the agent can see. Australian organisations should identify whether prompts, files or tool results contain personal or sensitive information and confirm that the intended use fits their privacy obligations.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Agents should also be tested with real business scenarios, including incomplete requests, incorrect information and attempts to access restricted data. Measure completion rates, human corrections, response time, tool failures and cost per successful task.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Monitoring should show which model was used, which tools were called, how long the task took and whether approval was required. These records help the business improve reliability without relying on guesswork.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When a user-facing experience is needed, AG-UI and ASP.NET Core can provide a secure agent web interface with streaming responses and visible approval steps.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Start narrow and prove the result<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The strongest first agent is rarely the one with access to every company system. It is the one that solves a measurable problem with clear boundaries.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Choose one workflow, define the expected business outcome and introduce tools gradually. Once the agent performs reliably, it can be expanded or connected to specialised agents through patterns such as those covered in our guide to external agent-to-agent endpoints.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">CloudProInc combines more than 20 years of enterprise IT experience with hands-on expertise across Microsoft Foundry, Azure, Microsoft 365, OpenAI, Claude and cybersecurity. As a Melbourne-based Microsoft Partner and Wiz Security Integrator, we focus on making agents useful, secure and practical rather than building technology for its own sake.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are considering a Foundry agent but are unsure where it should fit, what it should access or how to control the risk, we are happy to review the idea with you \u2014 no strings attached.<\/p>\n\n\n","protected":false},"excerpt":{"rendered":"<p>Learn how to turn an AI agent prototype into a secure, controlled business tool using Microsoft Foundry and Microsoft Agent Framework.<\/p>\n","protected":false},"author":1,"featured_media":58050,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_opengraph-title":"Production Agent Design with Microsoft Agent Framework","_yoast_wpseo_opengraph-description":"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.","_yoast_wpseo_twitter-title":"Production Agent Design with Microsoft Agent Framework","_yoast_wpseo_twitter-description":"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.","_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[80,13,113,115],"tags":[],"class_list":["post-58048","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai-agents","category-blog","category-microsoft-agent-framework","category-microsoft-ai-foundry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v28.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Production Agent Design with Microsoft Agent Framework<\/title>\n<meta name=\"description\" content=\"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Production Agent Design with Microsoft Agent Framework\" \/>\n<meta property=\"og:description\" content=\"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-25T02:02:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-25T02:04:25+00:00\" \/>\n<meta name=\"author\" content=\"CPI Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Production Agent Design with Microsoft Agent Framework\" \/>\n<meta name=\"twitter:description\" content=\"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"CPI Staff\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"Building Microsoft Foundry Agents with Microsoft Agent Framework\",\"datePublished\":\"2026-07-25T02:02:56+00:00\",\"dateModified\":\"2026-07-25T02:04:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/\"},\"wordCount\":1331,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework.png\",\"articleSection\":[\"AI Agents\",\"Blog\",\"Microsoft Agent Framework\",\"Microsoft AI Foundry\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/\",\"url\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/\",\"name\":\"Production Agent Design with Microsoft Agent Framework\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework.png\",\"datePublished\":\"2026-07-25T02:02:56+00:00\",\"dateModified\":\"2026-07-25T02:04:25+00:00\",\"description\":\"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cloudproinc.com.au\\\/index.php\\\/2026\\\/07\\\/25\\\/building-microsoft-foundry-agents-with-microsoft-agent-framework\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cloudproinc.com.au\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Building Microsoft Foundry Agents with Microsoft Agent Framework\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#website\",\"url\":\"https:\\\/\\\/cloudproinc.com.au\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cloudproinc.com.au\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/cloudproinc.com.au\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/favfinalfile.png\",\"width\":500,\"height\":500,\"caption\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cloudproinc.com.au\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\",\"name\":\"CPI Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g\",\"caption\":\"CPI Staff\"},\"sameAs\":[\"http:\\\/\\\/www.cloudproinc.com.au\"],\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Production Agent Design with Microsoft Agent Framework","description":"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/","og_locale":"en_US","og_type":"article","og_title":"Production Agent Design with Microsoft Agent Framework","og_description":"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.","og_url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/","og_site_name":"CPI Consulting","article_published_time":"2026-07-25T02:02:56+00:00","article_modified_time":"2026-07-25T02:04:25+00:00","author":"CPI Staff","twitter_card":"summary_large_image","twitter_title":"Production Agent Design with Microsoft Agent Framework","twitter_description":"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/#article","isPartOf":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/"},"author":{"name":"CPI Staff","@id":"https:\/\/cloudproinc.com.au\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"Building Microsoft Foundry Agents with Microsoft Agent Framework","datePublished":"2026-07-25T02:02:56+00:00","dateModified":"2026-07-25T02:04:25+00:00","mainEntityOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/"},"wordCount":1331,"commentCount":0,"publisher":{"@id":"https:\/\/cloudproinc.com.au\/#organization"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/07\/building-microsoft-foundry-agents-with-microsoft-agent-framework.png","articleSection":["AI Agents","Blog","Microsoft Agent Framework","Microsoft AI Foundry"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/","url":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/","name":"Production Agent Design with Microsoft Agent Framework","isPartOf":{"@id":"https:\/\/cloudproinc.com.au\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/#primaryimage"},"image":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/07\/building-microsoft-foundry-agents-with-microsoft-agent-framework.png","datePublished":"2026-07-25T02:02:56+00:00","dateModified":"2026-07-25T02:04:25+00:00","description":"Learn how production agent design combines secure identity, controlled tools, approvals, workflows and monitoring to move AI prototypes into business systems.","breadcrumb":{"@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/#primaryimage","url":"\/wp-content\/uploads\/2026\/07\/building-microsoft-foundry-agents-with-microsoft-agent-framework.png","contentUrl":"\/wp-content\/uploads\/2026\/07\/building-microsoft-foundry-agents-with-microsoft-agent-framework.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/25\/building-microsoft-foundry-agents-with-microsoft-agent-framework\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudproinc.com.au\/"},{"@type":"ListItem","position":2,"name":"Building Microsoft Foundry Agents with Microsoft Agent Framework"}]},{"@type":"WebSite","@id":"https:\/\/cloudproinc.com.au\/#website","url":"https:\/\/cloudproinc.com.au\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/cloudproinc.com.au\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudproinc.com.au\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudproinc.com.au\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/cloudproinc.com.au\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.com.au\/#\/schema\/logo\/image\/","url":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","contentUrl":"\/wp-content\/uploads\/2022\/01\/favfinalfile.png","width":500,"height":500,"caption":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd"},"image":{"@id":"https:\/\/cloudproinc.com.au\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudproinc.com.au\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e","name":"CPI Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2d96eeb53b791d92c8c50dd667e3beec92c93253bb6ff21c02cfa8ca73665c70?s=96&d=mm&r=g","caption":"CPI Staff"},"sameAs":["http:\/\/www.cloudproinc.com.au"],"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/author\/cpiadmin\/"}]}},"jetpack_featured_media_url":"\/wp-content\/uploads\/2026\/07\/building-microsoft-foundry-agents-with-microsoft-agent-framework.png","jetpack-related-posts":[{"id":57787,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints\/","url_meta":{"origin":58048,"position":0},"title":"Connecting Microsoft Foundry Agents to External A2A Endpoints","author":"CPI Staff","date":"July 7, 2026","format":false,"excerpt":"A practical guide for tech leaders on connecting Microsoft Foundry agents to external A2A endpoints safely, without creating cost, security, or governance surprises.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 1x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 1.5x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 2x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 3x, \/wp-content\/uploads\/2026\/07\/connecting-microsoft-foundry-agents-to-external-a2a-endpoints.png 4x"},"classes":[]},{"id":58020,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/24\/build-ai-agents-faster-with-microsoft-foundry-toolkit-in-vs-code\/","url_meta":{"origin":58048,"position":1},"title":"Build AI Agents Faster with Microsoft Foundry Toolkit in VS Code","author":"CPI Staff","date":"July 24, 2026","format":false,"excerpt":"Microsoft Foundry Toolkit helps development teams build and test business AI agents faster. Learn how to reduce delivery time without losing control of security, quality or costs.","rel":"","context":"In &quot;AI Agents&quot;","block_context":{"text":"AI Agents","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/ai-agents\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/build-ai-agents-faster-with-microsoft-foundry-toolkit-in-vs-code.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/build-ai-agents-faster-with-microsoft-foundry-toolkit-in-vs-code.png 1x, \/wp-content\/uploads\/2026\/07\/build-ai-agents-faster-with-microsoft-foundry-toolkit-in-vs-code.png 1.5x, \/wp-content\/uploads\/2026\/07\/build-ai-agents-faster-with-microsoft-foundry-toolkit-in-vs-code.png 2x, \/wp-content\/uploads\/2026\/07\/build-ai-agents-faster-with-microsoft-foundry-toolkit-in-vs-code.png 3x, \/wp-content\/uploads\/2026\/07\/build-ai-agents-faster-with-microsoft-foundry-toolkit-in-vs-code.png 4x"},"classes":[]},{"id":57809,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/08\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely\/","url_meta":{"origin":58048,"position":2},"title":"Deploy Containerised Hosted Agents with Microsoft Foundry Safely","author":"CPI Staff","date":"July 8, 2026","format":false,"excerpt":"A practical guide for tech leaders on when containerised hosted agents make sense, how they work, and how to deploy them without creating security or cost surprises.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 1x, \/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 1.5x, \/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 2x, \/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 3x, \/wp-content\/uploads\/2026\/07\/deploy-containerised-hosted-agents-with-microsoft-foundry-safely.png 4x"},"classes":[]},{"id":57836,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/12\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service\/","url_meta":{"origin":58048,"position":3},"title":"Implementing Secure A2A Auth in Microsoft Foundry Agent Service","author":"CPI Staff","date":"July 12, 2026","format":false,"excerpt":"AI agents are starting to call other agents. Here is how to implement A2A authentication in Microsoft Foundry Agent Service without creating a security blind spot.","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 1x, \/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 1.5x, \/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 2x, \/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 3x, \/wp-content\/uploads\/2026\/07\/implementing-secure-a2a-auth-in-microsoft-foundry-agent-service.png 4x"},"classes":[]},{"id":57905,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/20\/building-foundry-agent-web-interfaces-with-ag-ui-and-asp-net-core\/","url_meta":{"origin":58048,"position":4},"title":"Building Foundry Agent Web Interfaces with AG-UI and ASP.NET Core","author":"CPI Staff","date":"July 20, 2026","format":false,"excerpt":"Learn how AG-UI and ASP.NET Core turn Microsoft Foundry agents into secure, responsive web experiences with streaming, approvals and practical governance.","rel":"","context":"In &quot;.NET&quot;","block_context":{"text":".NET","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/net\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/07\/building-foundry-agent-web-interfaces-with-ag-ui-and-asp-net-core.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/07\/building-foundry-agent-web-interfaces-with-ag-ui-and-asp-net-core.png 1x, \/wp-content\/uploads\/2026\/07\/building-foundry-agent-web-interfaces-with-ag-ui-and-asp-net-core.png 1.5x, \/wp-content\/uploads\/2026\/07\/building-foundry-agent-web-interfaces-with-ag-ui-and-asp-net-core.png 2x, \/wp-content\/uploads\/2026\/07\/building-foundry-agent-web-interfaces-with-ag-ui-and-asp-net-core.png 3x, \/wp-content\/uploads\/2026\/07\/building-foundry-agent-web-interfaces-with-ag-ui-and-asp-net-core.png 4x"},"classes":[]},{"id":57239,"url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/03\/16\/what-microsofts-new-ai-stack-means-for-safer-faster-ai-projects\/","url_meta":{"origin":58048,"position":5},"title":"What Microsoft\u2019s New AI Stack Means for Safer Faster AI Projects","author":"CPI Staff","date":"March 16, 2026","format":false,"excerpt":"Agent Framework, Foundry, MCP and Aspire can speed up AI delivery without losing control. Here\u2019s what each layer does and how to decide what your business actually needs.","rel":"","context":"In &quot;Azure Foundry&quot;","block_context":{"text":"Azure Foundry","link":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/category\/azure-foundry\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2026\/03\/post-17.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2026\/03\/post-17.png 1x, \/wp-content\/uploads\/2026\/03\/post-17.png 1.5x, \/wp-content\/uploads\/2026\/03\/post-17.png 2x, \/wp-content\/uploads\/2026\/03\/post-17.png 3x, \/wp-content\/uploads\/2026\/03\/post-17.png 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/58048","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/comments?post=58048"}],"version-history":[{"count":1,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/58048\/revisions"}],"predecessor-version":[{"id":58049,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/posts\/58048\/revisions\/58049"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media\/58050"}],"wp:attachment":[{"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/media?parent=58048"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/categories?post=58048"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/wp-json\/wp\/v2\/tags?post=58048"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}