Some context on how I'm using this, since I think it matters for why this bit me
the way it did.
I drive Jira from Claude Code through the Atlassian MCP server. One of the things I've built on top of it is a meeting pipeline that syncs our Jira project into a local cache before it processes anything — it pulls every active ticket plus everything closed in the last 30 days, writes them to disk, and works from that snapshot. It's been running fine for months. As of yesterday (Aug 11, 9PM PST) it stopped working, and it took me a few tries and a fresh pair of eyes to work out what actually changed.
The short version: a JQL search that returns more issues than fit in the response now comes back truncated to 5 nodes, and the pagination cursor comes back empty — so there's no way to ask for the rest.
What threw me is that asking for *fewer* is what makes pagination work. At 100 the server seems to build the page, cut it down to fit, and lose the cursor on the way out — so the response tells me there are 85 more issues and simultaneously tells me there is no next page. At 5 it pages normally and I can walk the whole result set.
A couple of other things I noticed while digging, in case they're related:
Honestly, the cap itself I could design around. The part that actually cost me is that the truncation is silent. Nothing in the response distinguishes "here's a partial result you can resume" from "here's a partial result you can never finish," so anything built on this will happily treat 5 of 90 tickets as the whole world. In my eyes that's the real bug — a response that can't be completed should say so.
Is anyone else running into this since the update, particularly through Claude Code or another MCP client? Mostly I want to know whether this is an intentional change I should be building around, or a regression that's going to get fixed.
Hi @Gabriela - LeanZero, I've been using the MCP for months and have not experienced any issues like this until yesterday. I would normally be able to query all open/in-progress tickets and it would return 80+ at a time. My agent skill is designed to take that entire payload and drop it into a temp file to avoid dropping it into my agent's context window. It then is processed into a local cache file for the agent to work with.
One thing I did discover today is the preview version of MCP v2. That preview version doesn't not have the same 5 item limit as the live v1.