{"id":57829,"date":"2026-07-09T08:57:30","date_gmt":"2026-07-08T22:57:30","guid":{"rendered":"https:\/\/www.cloudproinc.com.au\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/"},"modified":"2026-07-09T08:58:58","modified_gmt":"2026-07-08T22:58:58","slug":"connecting-foundry-agents-to-business-systems-with-mcp-and-openapi","status":"publish","type":"post","link":"https:\/\/cloudproinc.com.au\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/","title":{"rendered":"Connecting Foundry Agents to Business Systems with MCP and OpenAPI"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">In this blog post Connecting Foundry Agents to Business Systems with MCP and OpenAPI we will explain how Microsoft Foundry agents can move from answering questions to safely doing useful work across your existing business systems.<\/p>\n\n\n\n<!--more-->\n\n\n\n<p class=\"wp-block-paragraph\">Most organisations are past the \u201ccan AI write an email?\u201d stage. The harder question for CIOs and CTOs is whether an AI agent can check a customer record, raise a ticket, summarise a contract, update a workflow, or retrieve operational data without creating a security or compliance headache.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That is where MCP, OpenAPI and custom tools come in. They are not just developer features. They are the plumbing that decides what an AI agent can access, what it can change, who approved it, and how your business proves it stayed in control.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The high level idea<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A Microsoft Foundry agent is useful when it can reason over a business request and then call the right system to complete part of the job. On its own, an agent can generate text. With tools, it can interact with real systems such as a CRM, ERP, service desk, HR platform, document store, security platform, or internal API.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Think of the agent as a capable employee who still needs access cards, policies, approvals and supervision. MCP, OpenAPI and custom tools are different ways of giving that employee controlled access to business systems.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n <li><strong>MCP<\/strong>, or Model Context Protocol, is an open standard that gives AI agents a consistent way to connect to external tools and data sources.<\/li>\n <li><strong>OpenAPI<\/strong> is a machine-readable description of an API, which is simply a structured way for systems to talk to each other.<\/li>\n <li><strong>Custom tools<\/strong> are purpose-built pieces of code that let the agent perform a specific action, usually with extra business rules around it.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">In our earlier article, Connecting Microsoft Foundry Agents to Business Systems, we covered the broader integration pattern. This post goes a layer deeper into how to choose between MCP, OpenAPI and custom tools when you are planning a production-grade agent.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The business problem this solves<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Many companies already have the data they need. The problem is that it is spread across too many systems.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A support manager might need information from Microsoft 365, the CRM, the billing platform and the service desk before they can answer a customer. A finance team might spend hours checking approvals, invoices and supplier records. An operations director might wait days for someone to pull information from multiple systems into a report.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">An AI agent can reduce that manual work, but only if it connects safely. If the integration is too loose, you risk exposing sensitive data. If it is too locked down, the agent becomes another chatbot that sounds clever but cannot actually help.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where MCP fits<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">MCP is useful when you want a standard way for agents to discover and use tools. Instead of building a one-off connector for every agent and every system, an MCP server can expose a set of approved tools that agents are allowed to call.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In plain English, an MCP server acts like a controlled service counter. The agent does not wander directly through your systems. It asks the counter for a specific action, such as \u201cfind this customer\u201d, \u201clist open incidents\u201d, or \u201cretrieve this document summary\u201d.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This matters for governance. If you have multiple agents across sales, service, operations and IT, MCP can help avoid a mess of one-off integrations that nobody fully understands six months later.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, a 180-person professional services firm might start with one agent that helps account managers prepare for client meetings. At first, it only searches approved documents. Later, the business wants it to check CRM notes, open project risks and billing status. MCP gives the IT team a cleaner way to expose those capabilities without rebuilding the agent each time.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We have also written about this from a security angle in Why MCP SDK for .NET Turns Tool Access Into a Security Decision. The key point is simple: once an agent can use tools, tool access becomes a business risk decision, not just a development task.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where OpenAPI fits<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">OpenAPI is often the fastest path when your business system already exposes a well-documented API. Many CRMs, ticketing platforms, HR systems, finance tools and internal applications have APIs that can be described using OpenAPI.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Microsoft Foundry agents can use OpenAPI tool definitions so the agent understands what actions are available, what information is required, and what result to expect. The OpenAPI file acts like a menu with rules.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A simplified example might look like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>openapi: 3.1.0\ninfo:\n title: Service Desk API\n version: 1.0.0\npaths:\n \/tickets:\n post:\n operationId: create_support_ticket\n summary: Create a support ticket for an approved business request\n requestBody:\n required: true\n content:\n application\/json:\n schema:\n type: object\n properties:\n customerId:\n type: string\n issueSummary:\n type: string\n priority:\n type: string\n enum: [low, medium, high]\n responses:\n &#39;201&#39;:\n description: Ticket created<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The important part is not the syntax. It is the discipline behind it. Each action needs a clear name, a clear purpose, and sensible limits.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, \u201ccreate_support_ticket\u201d is safer than a vague action like \u201cupdate_system\u201d. A well-described operation helps the agent choose the right action and helps your team audit what happened afterwards.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where custom tools fit<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Custom tools are best when you need business logic that should not live inside the agent prompt.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, you may want an agent to prepare a supplier payment request, but not submit it unless the supplier is verified, the amount is under a threshold, the cost centre is valid, and a manager has approved it. Those rules should be enforced in code, not left to the agent to remember.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Custom tools are also useful when you need to mask sensitive data. The tool might return \u201ccustomer is overdue by more than 30 days\u201d instead of exposing full invoice history to every user.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This is where a practical consultancy approach matters. At CloudProInc, we often advise clients not to connect everything at once. Start with a narrow, high-value workflow. Prove the controls. Then expand.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Choosing the right connection method<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">For most organisations, the answer is not MCP or OpenAPI or custom tools. It is usually a mix.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n <li><strong>Use OpenAPI<\/strong> when the system already has a stable API and you want the agent to call defined actions directly.<\/li>\n <li><strong>Use MCP<\/strong> when you want a reusable tool layer that multiple agents or AI applications can use consistently.<\/li>\n <li><strong>Use custom tools<\/strong> when the action needs approval logic, data filtering, validation, or business-specific safeguards.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">A good rule of thumb is this: if the action could create cost, change customer data, expose personal information, or affect compliance, put stronger controls around it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A real world scenario<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Imagine a 220-person Australian construction services company. The operations team receives hundreds of internal requests every month: equipment issues, site access questions, purchase requests, safety document lookups and supplier follow-ups.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Before AI, staff lost time switching between email, SharePoint, the service desk, finance records and project folders. The company did not need a flashy AI demo. It needed fewer delays and better control.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A sensible agent design might look like this:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n <li>The employee asks the agent for help with a site equipment issue.<\/li>\n <li>The agent searches approved internal procedures from Microsoft 365.<\/li>\n <li>It calls an OpenAPI tool to check whether there is an existing service ticket.<\/li>\n <li>If no ticket exists, it uses a custom tool to create a draft ticket with required fields.<\/li>\n <li>If the request involves cost or safety risk, it routes the task for human approval.<\/li>\n <li>Every tool call is logged so IT can review what happened.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">The business outcome is practical: fewer repeated questions, faster ticket creation, less manual searching, and better auditability. Nobody needs to \u201ctrust the AI\u201d blindly because the important actions are constrained and visible.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Security cannot be an afterthought<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Once an agent connects to business systems, you need to treat it like a privileged user. Not because the agent is malicious, but because it can move quickly and access information at scale.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For Australian organisations, this also links to Essential 8, the Australian government\u2019s cybersecurity framework that many organisations are now expected to follow. Controls such as restricting administrative privileges, patching applications, multi-factor authentication and logging are directly relevant when agents can call tools.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">There are five controls we recommend from the start:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n <li><strong>Least privilege:<\/strong> only give the agent access to the actions and data it genuinely needs.<\/li>\n <li><strong>Human approval:<\/strong> require approval for high-risk actions such as payments, deletions, account changes or customer-impacting updates.<\/li>\n <li><strong>Strong identity:<\/strong> use Microsoft Entra ID and managed identities where possible instead of hard-coded secrets.<\/li>\n <li><strong>Logging and review:<\/strong> record tool calls, inputs, outputs and errors so unusual behaviour can be investigated.<\/li>\n <li><strong>Data minimisation:<\/strong> send the smallest amount of information needed to complete the task.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">This is also where Microsoft Defender, Intune, which manages and secures company devices, and Wiz, which helps identify cloud security risks, become part of the broader operating model. The agent is only one piece of the environment. The surrounding controls matter just as much.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Common mistakes to avoid<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Connecting too many systems too early<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">It is tempting to give the agent access to everything. That usually creates confusion, not value.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Start with one workflow where the business outcome is obvious. Good examples include service desk triage, customer lookup, internal policy answers, onboarding support, or sales meeting preparation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Putting business rules in the prompt<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Prompts are useful for guidance, but they are not a reliable place for critical rules. If a rule affects money, privacy, security or compliance, enforce it in the tool or the API layer.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Ignoring ownership<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Every tool needs an owner. Someone must know what it does, what data it touches, who can use it, and how to switch it off.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Forgetting the user experience<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A secure agent that nobody uses is still a failed project. Keep the experience simple. Tell users what the agent can do, what it cannot do, and when a human will review the request.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">A practical rollout plan<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If you are planning to connect Microsoft Foundry agents to business systems, we suggest a staged approach.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n <li><strong>Pick one business process:<\/strong> choose a workflow with measurable time savings or risk reduction.<\/li>\n <li><strong>Map the systems involved:<\/strong> identify where the data lives and which actions are required.<\/li>\n <li><strong>Classify the actions:<\/strong> read-only, low-risk update, high-risk update, or approval required.<\/li>\n <li><strong>Choose the integration pattern:<\/strong> OpenAPI for existing APIs, MCP for reusable tool access, custom tools for business logic.<\/li>\n <li><strong>Design the security model:<\/strong> identity, permissions, approvals, logging and monitoring.<\/li>\n <li><strong>Test with real scenarios:<\/strong> use actual business cases, not artificial demo prompts.<\/li>\n <li><strong>Review and expand:<\/strong> improve the toolset only after the first workflow is stable.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">This approach keeps the project grounded. It also gives executives something tangible to assess: hours saved, tickets resolved faster, fewer manual errors, better compliance evidence, or reduced security exposure.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where CloudProInc helps<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">CloudProInc is a Melbourne-based Microsoft Partner and Wiz Security Integrator with more than 20 years of enterprise IT experience. We work across Azure, Microsoft 365, Intune, Windows 365, OpenAI, Anthropic Claude, Microsoft Defender and Wiz.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">That mix matters because agent projects are rarely just \u201cAI projects\u201d. They touch identity, security, cloud architecture, data governance, endpoint management, compliance and the everyday systems staff rely on.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Our role is to help clients connect agents safely and practically, without building a fragile science experiment that only one developer understands.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Final thought<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Connecting Foundry agents to business systems using MCP, OpenAPI and custom tools can create real value. But the value comes from controlled action, not uncontrolled access.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The best agent projects start small, solve a real business problem, and build trust through clear permissions, audit trails and sensible human oversight.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are not sure whether your current AI plans are ready for production, or whether your integrations are creating more risk than they remove, CloudProInc is happy to take a look \u2014 no strings attached.<\/p>\n\n\n","protected":false},"excerpt":{"rendered":"<p>Learn how MCP, OpenAPI and custom tools help Microsoft Foundry agents safely connect to the systems your business already runs on.<\/p>\n","protected":false},"author":1,"featured_media":57831,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_opengraph-title":"Business Systems: Connect Agents with MCP and OpenAPI","_yoast_wpseo_opengraph-description":"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.","_yoast_wpseo_twitter-title":"Business Systems: Connect Agents with MCP and OpenAPI","_yoast_wpseo_twitter-description":"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.","_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":[13],"tags":[],"class_list":["post-57829","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v28.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Business Systems: Connect Agents with MCP and OpenAPI<\/title>\n<meta name=\"description\" content=\"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Business Systems: Connect Agents with MCP and OpenAPI\" \/>\n<meta property=\"og:description\" content=\"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/\" \/>\n<meta property=\"og:site_name\" content=\"CPI Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-08T22:57:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-08T22:58:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudproinc.com.au\/wp-content\/uploads\/2026\/07\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1536\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"CPI Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Business Systems: Connect Agents with MCP and OpenAPI\" \/>\n<meta name=\"twitter:description\" content=\"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.\" \/>\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=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/\"},\"author\":{\"name\":\"CPI Staff\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/schema\\\/person\\\/192eeeb0ce91062126ce3822ae88fe6e\"},\"headline\":\"Connecting Foundry Agents to Business Systems with MCP and OpenAPI\",\"datePublished\":\"2026-07-08T22:57:30+00:00\",\"dateModified\":\"2026-07-08T22:58:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/\"},\"wordCount\":1924,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/\",\"name\":\"Business Systems: Connect Agents with MCP and OpenAPI\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/#primaryimage\"},\"thumbnailUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png\",\"datePublished\":\"2026-07-08T22:57:30+00:00\",\"dateModified\":\"2026-07-08T22:58:58+00:00\",\"description\":\"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/#primaryimage\",\"url\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png\",\"contentUrl\":\"\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/index.php\\\/2026\\\/07\\\/09\\\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Connecting Foundry Agents to Business Systems with MCP and OpenAPI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#website\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"name\":\"Cloud Pro Inc - CPI Consulting Pty Ltd\",\"description\":\"Cloud, AI &amp; Cybersecurity Consulting | Melbourne\",\"publisher\":{\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#organization\",\"name\":\"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd\",\"url\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/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.azurewebsites.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cloudproinc.azurewebsites.net\\\/#\\\/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.com.au\\\/index.php\\\/author\\\/cpiadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Business Systems: Connect Agents with MCP and OpenAPI","description":"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.","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:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/","og_locale":"en_US","og_type":"article","og_title":"Business Systems: Connect Agents with MCP and OpenAPI","og_description":"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.","og_url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/","og_site_name":"CPI Consulting","article_published_time":"2026-07-08T22:57:30+00:00","article_modified_time":"2026-07-08T22:58:58+00:00","og_image":[{"width":1536,"height":1024,"url":"https:\/\/cloudproinc.com.au\/wp-content\/uploads\/2026\/07\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png","type":"image\/png"}],"author":"CPI Staff","twitter_card":"summary_large_image","twitter_title":"Business Systems: Connect Agents with MCP and OpenAPI","twitter_description":"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.","twitter_misc":{"Written by":"CPI Staff","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/#article","isPartOf":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/"},"author":{"name":"CPI Staff","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/schema\/person\/192eeeb0ce91062126ce3822ae88fe6e"},"headline":"Connecting Foundry Agents to Business Systems with MCP and OpenAPI","datePublished":"2026-07-08T22:57:30+00:00","dateModified":"2026-07-08T22:58:58+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/"},"wordCount":1924,"commentCount":0,"publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"image":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/07\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/","url":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/","name":"Business Systems: Connect Agents with MCP and OpenAPI","isPartOf":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/#primaryimage"},"image":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2026\/07\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png","datePublished":"2026-07-08T22:57:30+00:00","dateModified":"2026-07-08T22:58:58+00:00","description":"Learn how MCP, OpenAPI and custom tools connect AI agents to business systems safely, with clear access, approvals and governance controls in real workflows.","breadcrumb":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/#primaryimage","url":"\/wp-content\/uploads\/2026\/07\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png","contentUrl":"\/wp-content\/uploads\/2026\/07\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/cloudproinc.azurewebsites.net\/index.php\/2026\/07\/09\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudproinc.azurewebsites.net\/"},{"@type":"ListItem","position":2,"name":"Connecting Foundry Agents to Business Systems with MCP and OpenAPI"}]},{"@type":"WebSite","@id":"https:\/\/cloudproinc.azurewebsites.net\/#website","url":"https:\/\/cloudproinc.azurewebsites.net\/","name":"Cloud Pro Inc - CPI Consulting Pty Ltd","description":"Cloud, AI &amp; Cybersecurity Consulting | Melbourne","publisher":{"@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudproinc.azurewebsites.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudproinc.azurewebsites.net\/#organization","name":"Cloud Pro Inc - Cloud Pro Inc - CPI Consulting Pty Ltd","url":"https:\/\/cloudproinc.azurewebsites.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/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.azurewebsites.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudproinc.azurewebsites.net\/#\/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.com.au\/index.php\/author\/cpiadmin\/"}]}},"jetpack_featured_media_url":"\/wp-content\/uploads\/2026\/07\/connecting-foundry-agents-to-business-systems-with-mcp-and-openapi.png","jetpack-related-posts":[{"id":53359,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/05\/05\/customizing-a-blazor-9-web-app-add-a-logo-and-change-the-sidebar-color\/","url_meta":{"origin":57829,"position":0},"title":"Customizing a Blazor 9 Web App: Add a Logo and Change the Sidebar Color","author":"CPI Staff","date":"May 5, 2025","format":false,"excerpt":"Blazor 9 introduces a powerful, component-driven architecture that makes it easier than ever to build interactive and modern web applications using .NET. In this tutorial, we'll walk you through how to personalize your Blazor web app by adding a custom logo and changing the sidebar color to give your app\u2026","rel":"","context":"In &quot;.NET&quot;","block_context":{"text":".NET","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/net\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 1x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 1.5x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 2x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 3x, \/wp-content\/uploads\/2025\/05\/Add-bootstrap-logo.png 4x"},"classes":[]},{"id":53066,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/01\/23\/enable-microsoft-365-insider-using-intune\/","url_meta":{"origin":57829,"position":1},"title":"Enable Microsoft 365 Insider Using Intune","author":"CPI Staff","date":"January 23, 2025","format":false,"excerpt":"In this blog post, we will show you how to set up Microsoft 365 Insider using Microsoft Intune. Estimated reading time: 4 minutes Table of contentsEnable Microsoft 365 Insider Using IntuneSync and Check VersionSimilar Posts This process will guide you through creating and assigning a configuration profile that changes the\u2026","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/01\/Enable-Microsoft-365-Insider-Using-Intune.webp","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/01\/Enable-Microsoft-365-Insider-Using-Intune.webp 1x, \/wp-content\/uploads\/2025\/01\/Enable-Microsoft-365-Insider-Using-Intune.webp 1.5x, \/wp-content\/uploads\/2025\/01\/Enable-Microsoft-365-Insider-Using-Intune.webp 2x"},"classes":[]},{"id":327,"url":"https:\/\/cloudproinc.com.au\/index.php\/2024\/07\/03\/configure-email-security-quarantine-policy-in-microsoft-365\/","url_meta":{"origin":57829,"position":2},"title":"Configure Email Security Quarantine Policy in Microsoft 365","author":"CPI Staff","date":"July 3, 2024","format":false,"excerpt":"In this Microsoft 365 Security blog post, we will explain how to configure email security quarantine policy in Microsoft 365. Microsoft 365 email quarantine is a security feature that isolates suspicious emails detected by spam filters and phishing detectors from passing in. Once an email is detected and isolated, it\u2026","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2024\/07\/Configure-Email-Security-Quarantine-Policy-in-Microsoft-365.webp","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2024\/07\/Configure-Email-Security-Quarantine-Policy-in-Microsoft-365.webp 1x, \/wp-content\/uploads\/2024\/07\/Configure-Email-Security-Quarantine-Policy-in-Microsoft-365.webp 1.5x, \/wp-content\/uploads\/2024\/07\/Configure-Email-Security-Quarantine-Policy-in-Microsoft-365.webp 2x"},"classes":[]},{"id":53293,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/04\/25\/openai-gpt-image-1-blazor-net-image-generator-web-app\/","url_meta":{"origin":57829,"position":3},"title":"OpenAI GPT-Image-1 Blazor .NET Image Generator Web App","author":"CPI Staff","date":"April 25, 2025","format":false,"excerpt":"In this blog post, we will present the OpenAI GPT-Image-1 Blazor .NET Image Generator Web App, a tool designed to demonstrate the capabilities of OpenAI's latest image generation API. \u00a0What Does the Web App Do? This Blazor-based web application leverages OpenAI's GPT-Image-1 model to generate stunning, high-quality images based on\u2026","rel":"","context":"In &quot;.NET&quot;","block_context":{"text":".NET","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/net\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/04\/OpenAI-GPT-image-1-image-API.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/04\/OpenAI-GPT-image-1-image-API.png 1x, \/wp-content\/uploads\/2025\/04\/OpenAI-GPT-image-1-image-API.png 1.5x, \/wp-content\/uploads\/2025\/04\/OpenAI-GPT-image-1-image-API.png 2x"},"classes":[]},{"id":53390,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/05\/18\/add-an-eye-catching-pop-up-to-your-sharepoint-online-site\/","url_meta":{"origin":57829,"position":4},"title":"Add an Eye-Catching Pop-Up to Your SharePoint Online Site","author":"CPI Staff","date":"May 18, 2025","format":false,"excerpt":"In this SharePoint Online blog post we will show how to Add an Eye-Catching Pop-Up to Your SharePoint Online Site. Looking for a simple way to draw attention to important messages on your SharePoint Online site? Whether you're launching a new tool, announcing a policy change, or just want to\u2026","rel":"","context":"In &quot;Blog&quot;","block_context":{"text":"Blog","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/blog\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/05\/Show-SharePoint-Online-popup-message.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/05\/Show-SharePoint-Online-popup-message.png 1x, \/wp-content\/uploads\/2025\/05\/Show-SharePoint-Online-popup-message.png 1.5x, \/wp-content\/uploads\/2025\/05\/Show-SharePoint-Online-popup-message.png 2x"},"classes":[]},{"id":56828,"url":"https:\/\/cloudproinc.com.au\/index.php\/2025\/11\/26\/customise-voice-synthesis-with-azure-speech-and-ssml\/","url_meta":{"origin":57829,"position":5},"title":"Customise Voice Synthesis With Azure Speech And SSML","author":"CPI Staff","date":"November 26, 2025","format":false,"excerpt":"Learn how to customise synthetic voices using Azure Cognitive Services and SSML to deliver clearer, more natural text-to-speech experiences in your applications.","rel":"","context":"In &quot;Azure AI Services&quot;","block_context":{"text":"Azure AI Services","link":"https:\/\/cloudproinc.com.au\/index.php\/category\/azure-ai-services\/"},"img":{"alt_text":"","src":"\/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png","width":350,"height":200,"srcset":"\/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 1x, \/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 1.5x, \/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 2x, \/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 3x, \/wp-content\/uploads\/2025\/11\/customise-voice-synthesis-with-azure-speech-and-ssml.png 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/57829","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/comments?post=57829"}],"version-history":[{"count":1,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/57829\/revisions"}],"predecessor-version":[{"id":57830,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/posts\/57829\/revisions\/57830"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media\/57831"}],"wp:attachment":[{"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/media?parent=57829"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/categories?post=57829"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudproinc.com.au\/index.php\/wp-json\/wp\/v2\/tags?post=57829"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}