Adobe Analytics MCP server - findMetrics Limit Error | Community
Skip to main content
Kshg7030
Level 2
June 3, 2026
Question

Adobe Analytics MCP server - findMetrics Limit Error

  • June 3, 2026
  • 1 reply
  • 51 views

I have implemented the Adobe Analytics MCP via oAuth server to server authentication and currently I am able to create connection and maintain sessions for this. However while using the call tools to request and fetch data from any reportSuite I am facing some kind of bug for the tool “findMetrics”.

Even after using the “page” & “limit” params I am still getting a large set of data as a response.

for e.g. I requested “page”:0 & “limit”:10 but still got returned 86 rows of metrics data, Not sure if this is any issue from server side under which “limit” is not recognized. If anyone else faced this error let me know. For now I have restricted the data by manually slicing the  post my limit.

1 reply

v-lazar
Level 2
June 3, 2026

@Kshg7030 the GET /metrics endpoint that findMetrics wraps does not actually accept limit or page, it only documents rsid, locale, segmentable, reportable, and expansion https://developer.adobe.com/analytics-apis/docs/2.0/guides/endpoints/metrics/ 

 

The MCP server forwards your params but the underlying Analytics API silently drops them and returns the full catalog.

 

Try segmentable=true or reportable=true to narrow server-side, otherwise client-side slicing is the expected pattern. If you actually wanted calculated metrics rather than the base metric catalog, the /calculatedmetrics endpoint does support limit and page properly.

https://www.linkedin.com/in/viktor-lazar/ | https://cyber64.com/insights