rootly-mcp-server 2.1.4__py3-none-any.whl → 2.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rootly_mcp_server/och_client.py +5 -2
- rootly_mcp_server/server.py +8 -8
- {rootly_mcp_server-2.1.4.dist-info → rootly_mcp_server-2.2.0.dist-info}/METADATA +4 -4
- {rootly_mcp_server-2.1.4.dist-info → rootly_mcp_server-2.2.0.dist-info}/RECORD +7 -7
- {rootly_mcp_server-2.1.4.dist-info → rootly_mcp_server-2.2.0.dist-info}/WHEEL +0 -0
- {rootly_mcp_server-2.1.4.dist-info → rootly_mcp_server-2.2.0.dist-info}/entry_points.txt +0 -0
- {rootly_mcp_server-2.1.4.dist-info → rootly_mcp_server-2.2.0.dist-info}/licenses/LICENSE +0 -0
rootly_mcp_server/och_client.py
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
"""On-Call Health API client for
|
|
1
|
+
"""On-Call Health API client for workload health risk analysis."""
|
|
2
2
|
|
|
3
3
|
import os
|
|
4
4
|
from typing import Any
|
|
5
5
|
|
|
6
6
|
import httpx
|
|
7
7
|
|
|
8
|
+
# External API field mapping (On-Call Health API response field)
|
|
9
|
+
_OCH_RISK_SCORE_FIELD = "burnout_score"
|
|
10
|
+
|
|
8
11
|
|
|
9
12
|
class OnCallHealthClient:
|
|
10
13
|
def __init__(self, api_key: str | None = None, base_url: str | None = None):
|
|
@@ -55,7 +58,7 @@ class OnCallHealthClient:
|
|
|
55
58
|
"rootly_user_id": member.get("rootly_user_id"),
|
|
56
59
|
"och_score": member.get("och_score", 0),
|
|
57
60
|
"risk_level": member.get("risk_level", "unknown"),
|
|
58
|
-
"
|
|
61
|
+
"health_risk_score": member.get(_OCH_RISK_SCORE_FIELD, 0),
|
|
59
62
|
"incident_count": member.get("incident_count", 0),
|
|
60
63
|
}
|
|
61
64
|
|
rootly_mcp_server/server.py
CHANGED
|
@@ -3168,7 +3168,7 @@ Updated: {attributes.get("updated_at", "N/A")}"""
|
|
|
3168
3168
|
}
|
|
3169
3169
|
|
|
3170
3170
|
@mcp.tool()
|
|
3171
|
-
async def
|
|
3171
|
+
async def check_oncall_health_risk(
|
|
3172
3172
|
start_date: Annotated[
|
|
3173
3173
|
str,
|
|
3174
3174
|
Field(description="Start date for the on-call period (ISO 8601, e.g., '2026-02-09')"),
|
|
@@ -3192,11 +3192,11 @@ Updated: {attributes.get("updated_at", "N/A")}"""
|
|
|
3192
3192
|
Field(description="Include recommended replacement responders (default: true)"),
|
|
3193
3193
|
] = True,
|
|
3194
3194
|
) -> dict:
|
|
3195
|
-
"""Check if any at-risk responders (based on On-Call Health
|
|
3195
|
+
"""Check if any at-risk responders (based on On-Call Health analysis) are scheduled for on-call.
|
|
3196
3196
|
|
|
3197
|
-
Integrates with On-Call Health (oncallhealth.ai) to identify responders
|
|
3198
|
-
and checks if they are scheduled during the specified period.
|
|
3199
|
-
safe replacement responders.
|
|
3197
|
+
Integrates with On-Call Health (oncallhealth.ai) to identify responders with elevated
|
|
3198
|
+
workload health risk and checks if they are scheduled during the specified period.
|
|
3199
|
+
Optionally recommends safe replacement responders.
|
|
3200
3200
|
|
|
3201
3201
|
Requires ONCALLHEALTH_API_KEY environment variable.
|
|
3202
3202
|
"""
|
|
@@ -3239,7 +3239,7 @@ Updated: {attributes.get("updated_at", "N/A")}"""
|
|
|
3239
3239
|
"total_at_risk": 0,
|
|
3240
3240
|
"at_risk_scheduled": 0,
|
|
3241
3241
|
"action_required": False,
|
|
3242
|
-
"message": "No users above
|
|
3242
|
+
"message": "No users above health risk threshold.",
|
|
3243
3243
|
},
|
|
3244
3244
|
}
|
|
3245
3245
|
|
|
@@ -3350,7 +3350,7 @@ Updated: {attributes.get("updated_at", "N/A")}"""
|
|
|
3350
3350
|
"user_id": int(rootly_id),
|
|
3351
3351
|
"och_score": user["och_score"],
|
|
3352
3352
|
"risk_level": user["risk_level"],
|
|
3353
|
-
"
|
|
3353
|
+
"health_risk_score": user["health_risk_score"],
|
|
3354
3354
|
"total_hours": round(total_hours, 1),
|
|
3355
3355
|
"shifts": user_shifts,
|
|
3356
3356
|
}
|
|
@@ -3451,7 +3451,7 @@ Updated: {attributes.get("updated_at", "N/A")}"""
|
|
|
3451
3451
|
|
|
3452
3452
|
error_type, error_message = MCPError.categorize_error(e)
|
|
3453
3453
|
return MCPError.tool_error(
|
|
3454
|
-
f"Failed to check
|
|
3454
|
+
f"Failed to check health risk: {error_message}",
|
|
3455
3455
|
error_type,
|
|
3456
3456
|
details={
|
|
3457
3457
|
"params": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rootly-mcp-server
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
4
4
|
Summary: Secure Model Context Protocol server for Rootly APIs with AI SRE capabilities, comprehensive error handling, and input validation
|
|
5
5
|
Project-URL: Homepage, https://github.com/Rootly-AI-Labs/Rootly-MCP-server
|
|
6
6
|
Project-URL: Issues, https://github.com/Rootly-AI-Labs/Rootly-MCP-server/issues
|
|
@@ -147,11 +147,11 @@ Alternatively, connect directly to our hosted MCP server:
|
|
|
147
147
|
- **`suggest_solutions`**: Mines past incident resolutions to recommend actionable solutions
|
|
148
148
|
- **MCP Resources**: Exposes incident and team data as structured resources for easy AI reference
|
|
149
149
|
- **Intelligent Pattern Recognition**: Automatically identifies services, error types, and resolution patterns
|
|
150
|
-
- **On-Call Health Integration**: Detects
|
|
150
|
+
- **On-Call Health Integration**: Detects workload health risk in scheduled responders
|
|
151
151
|
|
|
152
152
|
## On-Call Health Integration
|
|
153
153
|
|
|
154
|
-
Rootly MCP integrates with [On-Call Health](https://oncallhealth.ai) to detect
|
|
154
|
+
Rootly MCP integrates with [On-Call Health](https://oncallhealth.ai) to detect workload health risk in scheduled responders.
|
|
155
155
|
|
|
156
156
|
### Setup
|
|
157
157
|
|
|
@@ -175,7 +175,7 @@ Set the `ONCALLHEALTH_API_KEY` environment variable:
|
|
|
175
175
|
### Usage
|
|
176
176
|
|
|
177
177
|
```
|
|
178
|
-
|
|
178
|
+
check_oncall_health_risk(
|
|
179
179
|
start_date="2026-02-09",
|
|
180
180
|
end_date="2026-02-15"
|
|
181
181
|
)
|
|
@@ -3,17 +3,17 @@ rootly_mcp_server/__main__.py,sha256=mt74vaOpfHnX5rTO0CFAeulatR_9K3NBNCaLAhBLxlc
|
|
|
3
3
|
rootly_mcp_server/client.py,sha256=Qca2R9cgBxXcyobQj4RHl8gdxLB4Jphq0RIr61DAVKw,6542
|
|
4
4
|
rootly_mcp_server/exceptions.py,sha256=67J_wlfOICg87eUipbkARzn_6u_Io82L-5cVnk2UPr0,4504
|
|
5
5
|
rootly_mcp_server/monitoring.py,sha256=k1X7vK65FOTrCrOsLUXrFm6AJxKpXt_a0PzL6xdPuVU,11681
|
|
6
|
-
rootly_mcp_server/och_client.py,sha256=
|
|
6
|
+
rootly_mcp_server/och_client.py,sha256=6UBP7MLkaDOGcJ78hQgSqTyrtr41XwDTqOOfUnoMJkc,2861
|
|
7
7
|
rootly_mcp_server/pagination.py,sha256=2hZSO4DLUEJZbdF8oDfIt2_7X_XGBG1jIxN8VGmeJBE,2420
|
|
8
8
|
rootly_mcp_server/security.py,sha256=YkMoVALZ3XaKnMu3yF5kVf3SW_jdKHllSMwVLk1OlX0,11556
|
|
9
|
-
rootly_mcp_server/server.py,sha256=
|
|
9
|
+
rootly_mcp_server/server.py,sha256=neVjS-7AmEPIK7U2IfQ5TdAchHPnOaLONH_0nAHDX6g,163869
|
|
10
10
|
rootly_mcp_server/smart_utils.py,sha256=c7S-8H151GfmDw6dZBDdLH_cCmR1qiXkKEYSKc0WwUY,23481
|
|
11
11
|
rootly_mcp_server/texttest.json,sha256=KV9m13kWugmW1VEpU80Irp50uCcLgJtV1YT-JzMogQg,154182
|
|
12
12
|
rootly_mcp_server/utils.py,sha256=TWG1MaaFKrU1phRhU6FgHuZAEv91JOe_1w0L2OrPJMY,4406
|
|
13
13
|
rootly_mcp_server/validators.py,sha256=z1Lvel2SpOFLo1cPdQGSrX2ySt6zqR42w0R6QV9c2Cc,4092
|
|
14
14
|
rootly_mcp_server/data/__init__.py,sha256=KdWD6hiRssHXt0Ywgj3wjNHY1sx-XSPEqVHqrTArf54,143
|
|
15
|
-
rootly_mcp_server-2.
|
|
16
|
-
rootly_mcp_server-2.
|
|
17
|
-
rootly_mcp_server-2.
|
|
18
|
-
rootly_mcp_server-2.
|
|
19
|
-
rootly_mcp_server-2.
|
|
15
|
+
rootly_mcp_server-2.2.0.dist-info/METADATA,sha256=0sXGTYmYNvifnLHGoOPC7VJppxKDVWcZio-EbUVy3-0,9907
|
|
16
|
+
rootly_mcp_server-2.2.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
17
|
+
rootly_mcp_server-2.2.0.dist-info/entry_points.txt,sha256=NE33b8VgigVPGBkboyo6pvN1Vz35HZtLybxMO4Q03PI,70
|
|
18
|
+
rootly_mcp_server-2.2.0.dist-info/licenses/LICENSE,sha256=c9w9ZZGl14r54tsP40oaq5adTVX_HMNHozPIH2ymzmw,11341
|
|
19
|
+
rootly_mcp_server-2.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|