addigy-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., "@addigy-mcpshow all devices with high severity alerts"
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.
addigy-mcp
Addigy MCP server — exposes both Addigy API generations (v2 and the legacy v1) as MCP tools.
Naming note: app.mspbots.ai has two separate Addigy integrations: "Addigy" (
subject_code = ADDIGY, legacy v1 API, auth via Site + Client ID + Client Secret) and "Addigy V2" (subject_code = ADDIGYV2, v2 API, auth via a single API Key). This single server implements both, since they are the same vendor product and MSPbots' own integrations still use both API generations.
Overview
This server implements the Model Context Protocol (Streamable HTTP/SSE transport) and covers the interfaces that MSPbots' own Addigy integrations actually use, matching the interface scope configured in MSPbots' sys_integration/sys_integration_api tables:
Tool | Addigy API |
Addigy V2 | |
|
|
|
|
|
|
|
|
|
|
Addigy v1 (legacy) | |
|
|
|
|
|
|
|
|
|
|
|
|
It follows the MSPbots Vendor MCP Service SOP: stateless, no stored credentials, per-request header authentication.
Addigy API v2 authenticates via a single static API Key (
x-api-keyheader), created in the Addigy console under Account → Integrations — matching the single "API Key" field configured in MSPbots' Addigy V2 integration.Addigy API v1 (legacy, superseded by v2 but still in use for capabilities not yet in v2) authenticates via
client_id+client_secretquery parameters against a per-organization Site domain — matching the Site/Client ID/Client Secret fields configured in MSPbots' legacy Addigy integration.
This server forwards caller-supplied credentials as-is for whichever API generation a tool call targets; it never stores or persists them. A caller only needs to send the header set for the API version it actually calls — v1 and v2 credentials are independent.
Related MCP server: Meraki MCP Server
Quick Start
Docker (recommended)
docker compose up --buildThe server starts on http://localhost:8080.
Local (uv)
uv sync
python -m addigy_mcpHealth Check
curl http://localhost:8080/health
# {"status": "ok", "service": "addigy-mcp", "transport": "http"}No credentials are required for the health endpoint.
授权参数说明 (Authentication)
Every request to /mcp must include either the v2 header or all three v1 headers (a caller wanting both API generations sends all four):
Header | 类型 | 是否必填 | 默认值 | 枚举值 | 字段描述 | Example |
| string | 二选一(与下方三个 v1 header 组二选一,也可都传) | 无 | 无(自由文本) | Addigy API v2 静态 API Key,在 Addigy 控制台 Account → Integrations 里创建,本服务将其原样转发为 Addigy 官方 API 要求的 |
|
| string | 二选一(与 | 无 | 无(自由文本) | Addigy API v1(旧版)的 Client ID,对应 MSPbots "Addigy"(非 V2)集成配置里的 Client Id 字段。只调用 v1 工具时需要。 |
|
| string | 同上 | 无 | 无(自由文本) | Addigy API v1 的 Client Secret,对应 MSPbots "Addigy"(非 V2)集成配置里的 Client Secret 字段。 |
|
| string | 同上 | 无 | 无(不同组织对应不同域名) | Addigy API v1 的组织专属 Site 域名,对应 MSPbots "Addigy"(非 V2)集成配置里的 Site 字段。 |
|
Missing both the v2 header and a complete v1 header set returns 401 Unauthorized. Calling a v1 tool with only v2 credentials (or vice versa) returns a clear per-tool error rather than a blanket 401, so a caller using only one API generation doesn't need to send the other's headers at all.
Environment Variables
Variable | Default | Description |
|
| Listening port |
|
| Listening host |
|
| Addigy API v2 base URL (v1 has no fixed base URL — see |
MCP Endpoint
POST http://localhost:8080/mcpConnect your MCP client with:
Transport:
http(Streamable HTTP / SSE)Headers:
X-Addigy-Api-Key: <api_key>and/orX-Addigy-V1-Client-Id+X-Addigy-V1-Client-Secret+X-Addigy-V1-Site
Tool List
11 tools total (5 v2 + 6 v1), matching the exact combined interface count MSPbots' "Addigy" and "Addigy V2" integrations use.
Addigy V2 (5)
Tool | 功能 | 参数 |
| 按设备属性(fact)条件搜索设备 |
|
| 查已接收的监控告警列表 |
|
| 查全部策略或按 ID 过滤策略 |
|
| 查设备已装应用(Agent 上报,仅 macOS) |
|
| 查设备已装应用(MDM 上报) |
|
multitenancy/child_organizations apply to the three /oa/... endpoints and control whether results include descendant (child) organizations, per Addigy's "Child Organizations" API convention.
Addigy v1 — legacy (6)
Tool | 功能 | 参数 |
| 查设备列表 |
|
| 查告警列表 |
|
| 查全组织已装应用列表 |
|
| 查维护项列表 |
|
| 查策略列表 | 无 |
| 查公共软件目录 |
|
测试示例 (Test Example)
v2 — Query policies:
curl -X POST http://localhost:8080/mcp \
-H "Content-Type: application/json" \
-H "X-Addigy-Api-Key: <api_key>" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": { "name": "addigy_query_policies", "arguments": {} }
}'v1 — List devices:
curl -X POST http://localhost:8080/mcp \
-H "Content-Type: application/json" \
-H "X-Addigy-V1-Client-Id: <client_id>" \
-H "X-Addigy-V1-Client-Secret: <client_secret>" \
-H "X-Addigy-V1-Site: prod.addigy.com" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": { "name": "addigy_v1_get_devices", "arguments": { "page": 1, "per_page": 50 } }
}'A parameterized v2 call:
{
"method": "tools/call",
"params": {
"name": "addigy_get_alerts",
"arguments": { "page": "1", "per_page": "50" }
}
}API Reference
v2 documentation:
https://api.addigy.com/api/v2/documentation/— auth viax-api-keyheaderv1 documentation:
https://documenter.getpostman.com/view/6033495/S17tPnJf— auth viaclient_id/client_secretquery parameters against a per-organization Site domain (the currently published Postman doc only shows a subset of v1 endpoints; the 6 v1 tools here are grounded in MSPbots' ownsys_integration_apirecords of method/path/params for the legacy "Addigy" integration)
Known Gaps / Implementation Notes
Scope is intentionally limited to the interfaces MSPbots' "Addigy" and "Addigy V2" integrations are configured to use (5 + 6 = 11), not the full Addigy v2 API surface (which spans 300+ endpoints across MDM commands, policies, benchmarks, scripts, webhooks, and many third-party integration passthroughs).
page/per_pageonaddigy_get_alerts(v2) are typed as strings because the vendor's own OpenAPI spec defines them astype: string(despite being numeric page/size values) — passed through as-is.v1 credentials (
client_id/client_secret) are sent as query-string parameters, matching the pattern shown in Addigy's own v1 Postman examples (e.g. "Get Public Software", "Get Specific Custom Software") — Addigy's v1 API is inconsistent about this across endpoints (some examples use headers instead), so this should be verified against a live v1 account on first use.Not yet tested against a live Addigy account (either API generation) — only protocol-level verification (health check, 401 when neither credential set is present, correct per-tool error when only one credential set is present,
tools/listreturning all 11 tools) has been done so far.
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/addigy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server