connectwise-asio-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@connectwise-asio-mcpshow me all companies"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
connectwise-asio-mcp
ConnectWise Asio MCP server — exposes the ConnectWise Platform APIs (the "Current API" behind ConnectWise Asio, formerly SolarWinds MSP/N-central-adjacent RMM) as MCP tools.
Naming note: app.mspbots.ai calls this integration "ConnectWise Asio" (
sys_integration.subject_code = CWASIO). It is a distinct product from ConnectWise Command (Continuum), ConnectWise Manage (PSA), and ConnectWise Automate — each has its own MCP server in this fleet. The underlying API is officially named "ConnectWise Platform APIs" in its OpenAPI spec (developer.connectwise.com— "REST API" doc under Products > ConnectWise Platform > Platform Vendors > APIs and Callbacks).
Overview
This server implements the Model Context Protocol (Streamable HTTP/SSE transport) and wraps the ConnectWise Platform APIs — 25 tools across 5 categories (devices, companies_contacts, custom_fields, patching, automation), trimmed down to MSPbots' actually-configured 23 endpoints plus minimal core CRUD (see Tool List below; originally a full-API build of 107 operations across 24 tag categories). It follows the MSPbots Vendor MCP Service SOP: stateless, no stored credentials, per-request header authentication.
The underlying API authenticates via OAuth2 Client Credentials. This server does not perform the token exchange itself — it receives an already-obtained bearer access token per request (matching how other OAuth-flow integrations, e.g. Microsoft Graph, are handled in this MSPbots MCP fleet: the gateway mints/refreshes the token from client_id/client_secret/scope, and only the resulting token reaches this server).
Related MCP server: mcp-connectwise-psa
Quick Start
Docker (recommended)
docker compose up --buildThe server starts on http://localhost:8080.
Local (uv)
uv sync
python -m connectwise_asio_mcpHealth Check
curl http://localhost:8080/health
# {"status": "ok", "service": "connectwise-asio-mcp", "transport": "http"}No token is required for the health endpoint.
授权参数说明 (Authentication)
Every request to /mcp must include the following HTTP headers:
Header | 类型 | 是否必填 | 默认值 | 枚举值 | 字段描述 | Example |
| string | 必填 | 无 | 无(自由文本) | OAuth2 bearer access token,由调用方(Agent Platform / 上游网关)通过 |
|
| string | 可选 |
|
| ConnectWise Asio 按账号所属地区分 3 个独立服务器(Client ID 前缀 0e30=NA/0e31=EU/0e32=AU 可判断地区);不带该 header 时用环境变量默认值,网关同时服务多地区租户时按请求覆盖。 |
|
Missing X-ConnectWise-Asio-Token returns 401 Unauthorized.
Environment Variables
Variable | Default | Description |
|
| Listening port |
|
| Listening host |
|
| Default regional server; override per-request with |
MCP Endpoint
POST http://localhost:8080/mcpConnect your MCP client with:
Transport:
http(Streamable HTTP / SSE)Headers:
X-ConnectWise-Asio-Token: <access_token>(required),X-ConnectWise-Asio-Base-Url: <base_url>(optional)
Tool List
25 tools, trimmed down from an original 104-tool full-API build (2026-08-04). MSPbots' own stored integration config for this vendor calls 23 endpoints across 6 underlying resource categories (devices/endpoints, companies, sites, custom fields, patching, automation) — every one of those 23 configured endpoints (including separate v1/v2 path variants, which collapse onto the same tool here) maps to a tool kept below, marked with the endpoint name it corresponds to. Everything else from the original 104-tool build (Tickets — the single largest category at 24 tools, Policy/Policy Group/Package, Mapping, Alerting & Incidents, Backup Dashboard, Misc — 6 categories, ~79 tools) was removed as unused by MSPbots. If a removed category is needed later, the vendor's OpenAPI spec (linked below) still documents its exact operations and they can be re-added the same way the kept tools were generated.
Known gap carried over from the original build: MSPbots configured two endpoints — "ConnectWise Asio Suspension" (GET /v2/alerting/suspensions) and "ConnectWise Asio Suspension Details" (GET /v2/alerting/suspensions/{ruleid}) — that have no corresponding tool in this server at all (the original 104-tool build's alerting category only ever implemented create/update/delete/post-incident operations, never a GET-suspension read). This predates the trim and was not introduced by it; flagged here since it's now more visible with the smaller tool count. See Known Gaps below.
Companies & Contacts (6)
Tool | Description | Params |
| Create a new company (client). | body |
| List all companies (clients) for the partner. | none |
| Get a company by ID. | company_id |
| List all sites for a company. | company_id |
| Get a site by ID (partner-wide, not scoped to a company). | site_id |
| List all sites for the partner (across all companies). | none |
Custom Fields (6)
Tool | Description | Params |
| Get custom field values for a company. | company_id, attribute_ids?, with_defaults?, origin_type?, owner_id? |
| Get a custom field definition schema by ID. | definition_id |
| Get the list of custom field definitions for the partner (vendor-provided and partner-defined). | entity_type?, origin_type? |
| Get custom field values for a device (endpoint). | endpoint_id, attribute_ids?, with_defaults?, origin_type?, owner_id? |
| Get custom field values for a site. | site_id, attribute_ids?, with_defaults?, origin_type?, owner_id? |
| Update multiple custom field values for a company. | company_id, body |
Devices & Endpoints (9)
Tool | Description | Params |
| Get full details of a specific endpoint (device). | company_id, site_id, endpoint_id, field? |
| Get installed application details for a set of endpoints. | resource_type, resources, limit, cursor, field?, name?, version? |
| Get the latest CPU usage for an endpoint. | endpoint_id |
| Get the latest disk usage for an endpoint. | endpoint_id |
| Get online/offline availability information for devices. | resource_type, resources, offline_lookback?, availability? |
| Get the latest memory usage for an endpoint. | endpoint_id, minute? |
| Get service (Windows service / daemon) details for an endpoint. | company_id, site_id, endpoint_id, service_name?, field? |
| Get system state information (running processes, services, etc.) of an endpoint. | endpoint_id |
| List devices (endpoints) for a given category, scoped to specific resources. | category, resource_type, resources, limit, cursor, sort_by?, field?, filter? |
Patching (3)
Tool | Description | Params |
| Get the list of OS patches for an endpoint. | endpoint_id |
| Get bulk OS patch compliance summary for a set of resources. | resource_type, resources, limit, cursor, field? |
| Get bulk OS patch details for a set of endpoints. | resource_type, resources, field? |
Automation (1)
Tool | Description | Params |
| Get all automation tasks for the partner. | none |
测试示例 (Test Example)
Get a company list, then its sites:
{
"method": "tools/call",
"params": { "name": "connectwise_asio_get_companies", "arguments": {} }
}Equivalent curl against the running server (streamable HTTP MCP endpoint):
curl -X POST http://localhost:8080/mcp \
-H "Content-Type: application/json" \
-H "X-ConnectWise-Asio-Token: <access_token>" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": { "name": "connectwise_asio_get_companies", "arguments": {} }
}'A parameterized call:
{
"method": "tools/call",
"params": {
"name": "connectwise_asio_get_endpoint_cpu_usage",
"arguments": { "endpoint_id": "abc-123" }
}
}API Reference
Official docs (ConnectWise Developer Network — requires login): Products > ConnectWise Platform > Platform Vendors > APIs and Callbacks > REST API
Base URLs: NA
https://openapi.service.itsupport247.net, EUhttps://openapi.service.euplatform.connectwise.com, AUhttps://openapi.service.auplatform.connectwise.com
Known Gaps / Not Yet Verified
Trimmed from 104 to 25 tools on 2026-08-04. The original build covered the full ConnectWise Platform APIs spec per an earlier scope decision. A later scope decision cut this back to MSPbots' actually-used categories — see the Tool List section above for the exact endpoint→tool mapping and the full list of the 6 removed categories (~79 tools, including the 24-tool
ticketscategory, the single largest one in the original build). If a removed category is needed later, the vendor's OpenAPI spec (linked below) still documents its exact operations and they can be re-added the same way the kept tools were generated.MSPbots' configured "Suspension"/"Suspension Details" endpoints have no corresponding tool — this gap predates the trim (the original 104-tool build's
alertingcategory never implemented a GET-suspension read operation, only create/update/delete/post-incident) and was not introduced by it. If suspension data is actually needed, this would need to be added from the vendor's OpenAPI spec.Not yet tested against a live ConnectWise Asio account — only protocol-level verification (health check, 401 on missing token,
tools/listreturning all 25 tools) has been done so far.connectwise_asio_update_company_custom_fieldsandconnectwise_asio_create_companytake a genericbody: dictparameter rather than fully flattened named arguments — the docstring lists the required top-level fields, but nested object shapes should be cross-checked against the live API on first use.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityBmaintenanceExposes N-able N-central REST API as MCP tools for managing devices, organizations, users, and more, with support for read-only, write, and full write modes.825MIT
- Alicense-qualityAmaintenanceMCP server for ConnectWise PSA (Manage) enabling ticket management, time entry, and read-only lookups of companies, contacts, and configurations with role-based access control and bring-your-own-API-keys support.1434MIT
- Alicense-qualityBmaintenanceExposes the ConnectWise Command (Continuum) ITSupport247 Reporting API as MCP tools, enabling querying of sites, devices, patches, antivirus, performance, and more.Apache 2.0
- Flicense-qualityCmaintenanceExposes the CloudRadial REST API (client portal / PSA-adjacent MSP platform) as MCP tools, enabling operations on companies, articles, feedback, archives, flexible assets, and more via 34 tools with HTTP Basic Auth.
Related MCP Connectors
Search, document and execute authenticated API calls across 500+ apps via one MCP server
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MSPbotsAI/connectwise-asio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server