accessflow-mcp-server 1.0.7 → 1.0.9
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.
|
@@ -11,7 +11,7 @@ export const getMostUrgentIssuesDefinition = {
|
|
|
11
11
|
export const getMostUrgentIssuesHandler = async (args, context) => {
|
|
12
12
|
const { environment, headers } = context;
|
|
13
13
|
// Validate limit parameter
|
|
14
|
-
const issueLimit =
|
|
14
|
+
const issueLimit = 5;
|
|
15
15
|
try {
|
|
16
16
|
const response = await fetch(`${environment}/api/v6/mcp/urgent-issues?limit=${issueLimit}`, {
|
|
17
17
|
method: "GET",
|