Skip to content
Cloud InfrastructureAuto-generatedScore: 28

Azure Addons Resource Provider MCP Server

The Azure Addons Resource Provider API, officially designated under the Microsoft.

Quick Start Summary

The Azure Addons Resource Provider MCP server is a Model Context Protocol bridge that connects AI assistants — including Claude Desktop, Cursor, Windsurf, and VS Code Copilot — to the Azure Addons Resource Provider API through natural language. It exposes 5 API endpoints as callable tools, such as Operations_List, Returns the Canonical Support Plans., SupportPlanTypes_Get, and more. No authentication is required — setup takes approximately 30 seconds. The server uses STDIO transport and can be installed by running npx -y @mcp/azure-com-addons-addons. This integration is sourced from the auto Azure Addons Resource Provider OpenAPI specification (v2017-05-15) and has a quality score of 28/99 (fair documentation coverage).

5Endpointstools mapped
NoneAuthopen access
28/99Qualityfair
~30 secSetupno auth

Server Details

Category
Cloud Infrastructure
Authentication
None
Endpoints
5 operations
Transport
STDIO
Spec Version
v2017-05-15
Install Command
npx -y @mcp/azure-com-addons-addons

Environment Variables

AZURE_ADDONS_RESOURCE_PROVIDER_API_KEY

Example: your_azure_addons_resource_provider_api_key

Top Endpoints

GET
/providers/Microsoft.Addons/operations

Operations_List

GET
/subscriptions/{subscriptionId}/providers/Microsoft.Addons/supportProviders/{providerName}/supportPlanTypes

Returns the Canonical Support Plans.

GET
/subscriptions/{subscriptionId}/providers/Microsoft.Addons/supportProviders/{providerName}/supportPlanTypes/{planTypeName}

SupportPlanTypes_Get

PUT
/subscriptions/{subscriptionId}/providers/Microsoft.Addons/supportProviders/{providerName}/supportPlanTypes/{planTypeName}

SupportPlanTypes_CreateOrUpdate

DELETE
/subscriptions/{subscriptionId}/providers/Microsoft.Addons/supportProviders/{providerName}/supportPlanTypes/{planTypeName}

SupportPlanTypes_Delete

Own this API?

Verify ownership of this listing to control the description, configuration details, and documentation links. Choose between free manual verification or instant premium placement.

Option 1: Free Verification

Slow manual review. Requires creating a GitHub issue with verified documentation or domain verification.

  • • Verified badge on page
  • • Standard search sorting
  • • 2-3 business days review
Start Free Claim →
Instant & Boosted

Option 2: Featured Upgrade($9/mo)

Instant verification plus premium styling, featured badges, and directory placement boost.

  • • ★ Featured star & amber highlight border
  • • Top of directory search placement
  • • Instant activation via claim token

📖 Detailed MCP Integration Guide

A technical breakdown of capabilities, agent workflows, and security/configuration best practices.

Capabilities & Use Cases
The Azure Addons Resource Provider API, officially designated under the Microsoft.Addons namespace, is a specialized Azure Resource Manager service designed to enable organizations to manage and configure commercial support plans for third-party marketplace products integrated into their Azure subscriptions. This resource provider serves as the programmatic bridge between Azure customers and the support plan configurations offered by third-party software vendors who publish solutions through the Azure Marketplace. Unlike general-purpose marketplace management APIs, the Addons Resource Provider focuses specifically on the support contract lifecycle, allowing enterprises to provision, query, modify, and deprovision support entitlements associated with their third-party Azure solutions. The API is provided and operated by Microsoft as part of the broader Azure Resource Manager framework, and it operates at the subscription scope, meaning each support plan configuration is anchored to a specific Azure subscription context.
🤖AI Agent Value
From a core capabilities standpoint, the API exposes a well-structured set of RESTful endpoints that collectively support full CRUD operations on support plan types tied to specific third-party support providers. The operations endpoint provides discoverability, allowing clients to enumerate all available actions and their parameter requirements. For support plan management, the API offers read operations to list all support plan types available from a given provider or to retrieve detailed metadata about a specific plan type, including its name, description, and associated provider information. The write operations allow administrators to provision new support plan configurations or update existing ones, while delete operations enable the removal of support plan associations when they are no longer required. The typical enterprise use case involves DevOps and platform engineering teams who need to programmatically ensure that their Azure workloads running third-party marketplace software have the appropriate support contracts in place, whether for compliance, audit readiness, or operational governance. Organizations with large Azure footprints often need to audit which third-party products have active support and which do not, making this API a critical component of their cloud governance toolkit.
💬Example Workflows
When exposed as tools to an AI coding assistant through the Model Context Protocol, the Azure Addons Resource Provider becomes a powerful instrument for automating infrastructure governance and support contract management tasks. An AI agent integrated with this MCP server can dynamically query the current state of support plan configurations across subscriptions, identify gaps in support coverage for third-party dependencies, and propose or execute remediation actions. For example, a developer can instruct the AI to list all support plan types from a specific provider like HashiCorp or Red Hat and then cross-reference those against the organization's compliance requirements to flag any unsupported deployments. The AI agent can also automate the creation of support plan provisions when new third-party workloads are deployed, eliminating manual portal interactions and reducing the risk of human error. More advanced workflows might involve the AI agent generating infrastructure-as-code templates that include support plan configurations, or writing automated scripts that periodically audit support plan status and generate reports for stakeholders. The contextual intelligence of the AI assistant, combined with the structured data from this API, enables natural language queries such as checking whether a specific provider's support plan is active before initiating a production deployment, or bulk-provisioning support plans across multiple subscriptions during a migration project.
🛡️Security & Auth
Regarding authentication and security, it is important to note that while the endpoint specification may list the authentication method as none, in practice all Azure Resource Manager APIs, including the Addons Resource Provider, require proper Azure Active Directory authentication and authorization. Every request must include a valid bearer token obtained through Azure AD OAuth 2.0 flows, and the calling identity must be granted appropriate role-based access control permissions at the subscription scope. The most commonly required built-in roles are Support Plan Contributor for managing plan configurations and Reader for querying existing plans without modification rights. Developers setting up an MCP server to interface with this API should follow the principle of least privilege by creating a dedicated service principal or managed identity with only the specific RBAC permissions needed for their intended workflow, rather than granting broad contributor access. Secrets and tokens must never be hardcoded or exposed in client-side code; instead, developers should leverage Azure Key Vault, environment variables, or managed identity federation. When deploying the MCP server in a shared environment, network-level restrictions such as Azure Private Endpoints and IP allow-listing should be considered to further reduce the attack surface. Finally, all API interactions should be logged and monitored through Azure Monitor and Azure Policy to maintain a complete audit trail of support plan changes, which is especially critical in regulated industries where support contract compliance may be subject to external audit requirements.

Similar APIs

Other APIs in the Cloud Infrastructure category.

Related MCP Server Integrations

Supabase API MCP Setup

Manage Supabase projects, databases, authentication, and storage through your AI agent.

Cloud InfrastructureConfigure →

Cloudflare API MCP Setup

Manage Cloudflare DNS, CDN, Workers, and security settings through your AI agent.

Cloud InfrastructureConfigure →

Vercel API MCP Setup

Deploy projects, manage domains, and monitor deployments through your AI agent.

Cloud InfrastructureConfigure →

DigitalOcean API MCP Setup

The DigitalOcean API is a comprehensive, RESTful interface provided by DigitalOcean, a leading cloud infrastructure provider focused on simplifying cloud computing for developers, startups, and enterprises. It serves as the programmatic backbone for managing the entire DigitalOcean ecosystem, enabling users to provision, configure, and control cloud resources such as Droplets (virtual private servers), Kubernetes clusters, managed databases, networks, storage volumes, and application platforms. Core capabilities include full lifecycle management of these resources, from creation and scaling to monitoring and deletion, mirroring the functionality available in the DigitalOcean control panel. Its primary use cases range from automating infrastructure setup for CI/CD pipelines and enabling infrastructure-as-code practices to supporting dynamic application scaling and resource optimization for SaaS products, e-commerce sites, and development environments. The API is designed for both developers seeking to automate their cloud operations and businesses that require programmable, scalable cloud infrastructure without the complexity of larger hyperscale providers.

Cloud InfrastructureConfigure →

Access Analyzer MCP Setup

The AWS Identity and Access Management Access Analyzer API provides a powerful, policy-as-code service that automatically identifies resources accessible from outside your AWS account or organization. At its core, the service continuously evaluates resource-based policies—such as Amazon S3 bucket policies, AWS Identity and Access Management (IAM) roles, Amazon KMS key policies, and AWS Lambda function policies—using logic-based reasoning to determine which resources grant access to unknown external principals. Its primary use case is for security and compliance teams within enterprises to proactively detect unintended data exposure, enforce least privilege principles, and audit cross-account and cross-service access. The API endpoints allow programmatic control to create, configure, and query analyzers, manage archive rules for storing findings, and generate custom policy documents, making it a foundational tool for automating cloud security posture management at scale.

Cloud InfrastructureConfigure →