Intune Ready
Fixed-price Microsoft Intune and Windows 365 setup for small businesses: tiers, scope, FAQ, facts.
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"intune-ready": {
"url": "https://intuneready.com/mcp"
}
}
}Remote endpoints
https://intuneready.com/mcpstreamable-httpTool inventory
Tools (6)
🟢get_offering(section)
Returns what Intune Ready offers: the three fixed-price tiers with hour and cost ranges, the billing model, what a deployment covers, and the service area. Figures are indicative ranges published on the site, not a quote. Use this for questions about price, scope, tiers, or what is included.
Input Schema
{
"type": "object",
"properties": {
"section": {
"type": "string",
"enum": [
"all",
"tiers",
"billing",
"scope",
"service_area"
],
"description": "Which part of the offering to return. Defaults to \"all\"."
}
},
"additionalProperties": false
}🟢get_cloud_pc_offering(service, section)
Returns the Cloud PC service line, which is separate from the Intune service: Windows 365 implementation (the primary service, with fixed-price setup tiers by number of users) and Azure Virtual Desktop implementation (for larger and multi-location teams, custom quote only). Also covers how the two compare. Microsoft license prices are never included. Use this for questions about Cloud PCs, Windows 365, Azure Virtual Desktop, or replacing physical PCs.
Input Schema
{
"type": "object",
"properties": {
"service": {
"type": "string",
"enum": [
"all",
"comparison",
"windows_365",
"azure_virtual_desktop"
],
"description": "Which service to return. Defaults to \"all\"."
},
"section": {
"type": "string",
"enum": [
"all",
"summary",
"pricing",
"faq"
],
"description": "Which part to return. Defaults to \"all\"."
}
},
"additionalProperties": false
}🟢get_partner_channel(audience, section)
Returns how Intune Ready takes on work through partners: MSPs routing overflow, specialty or rescue Intune projects, and independent IT contractors subcontracting or referring a client. Covers the arrangements, what stays with the partner, and the client-ownership commitment. Carries no prices of its own — a partner engagement is priced from the tiers in get_offering. Use this for questions about subcontracting Intune work, white-label delivery, referring a client, or hiring an Intune specialist as an MSP or contractor.
Input Schema
{
"type": "object",
"properties": {
"audience": {
"type": "string",
"enum": [
"all",
"msps",
"contractors"
],
"description": "Which partner audience to return. Defaults to \"all\"."
},
"section": {
"type": "string",
"enum": [
"all",
"summary",
"faq"
],
"description": "Which part to return. Defaults to \"all\"."
}
},
"additionalProperties": false
}🟢get_faq(query)
Returns the general Intune Ready FAQ from the homepage, verbatim: licensing, cost, timelines, messy existing enrollments, and what happens after setup. Optionally filter with a search term to return only matching pairs. It does not cover the other published FAQs — use get_partner_channel for MSPs and independent IT contractors, and get_cloud_pc_offering for Windows 365 and Azure Virtual Desktop. If nothing matches, says so rather than guessing.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Optional case-insensitive search term matched against questions and answers."
}
},
"additionalProperties": false
}🟢get_facts(topic)
Returns verifiable facts about the provider: background, Microsoft Partner Program membership, active certifications, the hands-on delivery record for Windows 365 and Azure Virtual Desktop, and public company and personal profile links (LinkedIn, Google Business Profile, Microsoft Learn). Use this for questions about qualifications, credentials, or who does the work.
Input Schema
{
"type": "object",
"properties": {
"topic": {
"type": "string",
"enum": [
"all",
"background",
"certifications",
"partner_program",
"hands_on_delivery",
"profile_links"
],
"description": "Which facts to return. Defaults to \"all\"."
}
},
"additionalProperties": false
}🟢get_contact
Returns the URL where a human can start a conversation or book a free consultation. This is a pointer only — this server cannot book, schedule, quote, or transact anything.
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}