cloudradial-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., "@cloudradial-mcpshow me the list of 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.
cloudradial-mcp
CloudRadial MCP server — exposes the CloudRadial REST API (client portal / PSA-adjacent MSP platform) as MCP tools.
Naming note: app.mspbots.ai calls this integration "CloudRadial" (
sys_integration.subject_code = CLOUDRADIAL). The vendor's public API is documented at developers.cloudradial.com and its Swagger UI athttps://api.us.cloudradial.com/swagger.
Overview
This server implements the Model Context Protocol (Streamable HTTP/SSE transport) and wraps every operation in CloudRadial's official OpenAPI 3.0 spec (v1, 34 operations across 8 resource groups: Company, Article, Feedback, Token, Archive/ArchiveItem, FlexibleAsset, FlexibleAssetType, and the OData v2 metadata endpoint). It follows the MSPbots Vendor MCP Service SOP: stateless, no stored credentials, per-request header authentication.
The underlying API authenticates via HTTP Basic Auth: the Public Key is the username and the Private Key is the password (both generated under Partner > Settings > Integrations > API in the CloudRadial portal). This matches how the existing CloudRadial integration on app.mspbots.ai is configured (authType: 0, custom Key/Secret credential fields) — this server receives both values per request via headers and never persists them.
Related MCP server: Datto RMM MCP Server
Quick Start
Docker (recommended)
docker compose up --buildThe server starts on http://localhost:8080.
Local (uv)
uv sync
python -m cloudradial_mcpHealth Check
curl http://localhost:8080/health
# {"status": "ok", "service": "cloudradial-mcp", "transport": "http"}No credentials are required for the health endpoint.
授权参数说明 (Authentication)
Every request to /mcp must include the following HTTP headers:
Header | 类型 | 是否必填 | 默认值 | 枚举值 | 字段描述 | Example |
| string | 必填 | 无 | 无(自由文本) | HTTP Basic Auth 的用户名部分,对应 CloudRadial 门户 Partner > Settings > Integrations > API 页面生成的 Public Key。 |
|
| string | 必填 | 无 | 无(自由文本) | HTTP Basic Auth 的密码部分,对应同一页面生成的 Private Key;该值只在创建时显示一次,需妥善保存。 |
|
Missing either header returns 401 Unauthorized.
Environment Variables
Variable | Default | Description |
|
| Listening port |
|
| Listening host |
|
| CloudRadial API base URL |
MCP Endpoint
POST http://localhost:8080/mcpConnect your MCP client with:
Transport:
http(Streamable HTTP / SSE)Headers:
X-CloudRadial-Public-Key: <public_key>(required),X-CloudRadial-Private-Key: <private_key>(required)
Tool List
34 tools — full coverage of every operation in the official CloudRadial OpenAPI spec.
Company (1)
Tool | 功能 | 参数 |
| 列出门户中的公司(客户组织) |
|
Article (3)
Tool | 功能 | 参数 |
| 列出知识库文章 |
|
| 新建/更新知识库文章(写操作) |
|
| 删除知识库文章(写操作) |
|
Feedback (3)
Tool | 功能 | 参数 |
| 列出 CSAT/反馈记录 |
|
| 提交反馈/CSAT 记录(写操作) |
|
| 删除反馈记录(写操作) |
|
Token (3) — portal 合并字段变量,与鉴权无关
Tool | 功能 | 参数 |
| 列出门户合并字段 token(@变量) |
|
| 新建/更新合并字段 token(写操作) |
|
| 删除合并字段 token(写操作) |
|
Archive & Archive Item (6)
Tool | 功能 | 参数 |
| 列出报表归档定义 |
|
| 新建/更新归档定义(写操作) |
|
| 删除归档定义(写操作) |
|
| 列出归档内的条目(报表) |
|
| 向归档添加条目(写操作,body 结构未公开,见 Known Gaps) |
|
| 删除归档中的单个条目(写操作) |
|
FlexibleAsset — IT Glue 兼容层 (8)
Tool | 功能 | 参数 |
| 按资产类型列出自定义资产记录 |
|
| 新建自定义资产记录(写操作) |
|
| 批量更新自定义资产记录(写操作) |
|
| 批量删除自定义资产记录(写操作) |
|
| 按 ID 查自定义资产记录 |
|
| 删除单个自定义资产记录(写操作) |
|
| 更新单个自定义资产记录(写操作) |
|
| 在指定公司下批量新建自定义资产(写操作) |
|
FlexibleAssetType — 自定义资产类型定义 (8)
Tool | 功能 | 参数 |
| 列出自定义资产类型 |
|
| 新建自定义资产类型(可同时创建字段,写操作) |
|
| 按 ID 查自定义资产类型 |
|
| 更新自定义资产类型(写操作) |
|
| 删除自定义资产类型(写操作) |
|
| 列出资产类型下的字段定义 |
|
| 为资产类型新增字段定义(写操作) |
|
| 按 ID 查单个字段定义 |
|
Metadata — OData v2 (2)
Tool | 功能 | 参数 |
| 获取 OData $metadata 文档 | 无 |
| 查询 OData v2 端点 |
|
测试示例 (Test Example)
List companies:
{
"method": "tools/call",
"params": { "name": "cloudradial_get_companies", "arguments": { "take": 10 } }
}Equivalent curl against the running server (streamable HTTP MCP endpoint):
curl -X POST http://localhost:8080/mcp \
-H "Content-Type: application/json" \
-H "X-CloudRadial-Public-Key: <public_key>" \
-H "X-CloudRadial-Private-Key: <private_key>" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": { "name": "cloudradial_get_companies", "arguments": { "take": 10 } }
}'API Reference
Getting started: https://developers.cloudradial.com/docs/getting-started
Swagger UI: https://api.us.cloudradial.com/swagger
Base URL:
https://api.us.cloudradial.com
Known Gaps / Not Yet Verified
Not yet tested against a live CloudRadial account — only protocol-level verification (health check, 401 on missing credentials,
tools/listreturning all 34 tools) has been done so far.cloudradial_create_archive_item's request body shape is not published in CloudRadial's OpenAPI spec (the schema is empty) — CloudRadial's docs describe archive item uploads via drag-and-drop, an archive-unique email address, or "an API connection" (up to 128MB), but do not document the exact JSON field names. Verify the correct payload shape with CloudRadial support or by inspecting a successful portal-side upload before relying on this tool in production.The
TokenAPI (cloudradial_get_tokens/cloudradial_set_token/cloudradial_delete_token) manages CloudRadial's portal merge-field variables (@-prefixed tokens used in Articles/Automations/Messages) — it is unrelated to authentication, despite the name.The
FlexibleAsset/FlexibleAssetTypetools wrap a JSON:API-shaped, IT Glue-compatible layer (/compatibility/...); bulk update/create-under-organization tools accept pre-shaped JSON:API list payloads rather than fully flattened arguments, since the nesting (data[].attributes.{...}) doesn't flatten cleanly into named parameters.cloudradial_query_odataaccepts a raw OData query string rather than typed parameters, since the spec does not declare$filter/$select/etc. as typed Swagger parameters (standard for OData v4 endpoints).
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.
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/cloudradial-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server