accessflow-mcp-server 1.0.7 → 1.0.8

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 = 3;
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "accessflow-mcp-server",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "AccessFlow MCP Server for accessibility issue remediation",
5
5
  "main": "build/index.js",
6
6
  "bin": {