I am also getting the same error " We are having trouble completing this action. Please try again shortly. "
My mcp tool is setup correctly ,tools are also rendered correctly but when I am querying "mcpTools.atlassianUserInfo" it is giving me this error from long time .
Can anyone help me for the same .
Hi ,
Thank you for the troubleshooting suggestions. I've completed all the diagnostic checks you recommended. Here are the findings.
1. MCP Server Connection & Tool Schema Loading
Status: WORKING
MCP API URL: https://mcp.atlassian.com/v1/mcp
CloudId: 9ce6b0b2-fa56-4d46-a42e-babd72af28d6
Token exists: true
Site URL: https://gravie.atlassian.net
MCP client created: SUCCESS
Tools loaded: 20+ tools
All tool schemas load correctly.
2. MCP Tool Execution Tests
Status: All tools failing
Input:
{}
Result:
{
content: [...],
isError: true
}
Error message:
"We are having trouble completing this action. Please try again shortly."
Test 2: searchJiraIssuesUsingJql
Input:
{
"cloudId": "9ce6b0b2-fa56-4d46-a42e-babd72af28d6",
"jql": "assignee = currentUser() ORDER BY updated DESC"
}
Result:
Error message:
"We are having trouble completing this action. Please try again shortly."
Test 3: search
Input:
{
"query": "test query"
}
Result:
{
content: [...],
isError: true
}
Error:Cannot read properties of undefined
3. Schema Verification:
Status: Correct
atlassianUserInfo → Called with {}
searchJiraIssuesUsingJql → cloudId + jql provided
search → query provided
All parameters match the tool schemas.
HI @Deepak Chikane ,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Himanshu Tiwary Thank you for the troubleshooting suggestions. I've completed all the diagnostic checks you recommended. Here are the findings.
1. MCP Server Connection & Tool Schema Loading
Status: WORKING
MCP API URL: https://mcp.atlassian.com/v1/mcp
CloudId: 9ce6b0b2-fa56-4d46-a42e-babd72af28d6
Token exists: true
Site URL: https://gravie.atlassian.net
MCP client created: SUCCESS
Tools loaded: 20+ tools
All tool schemas load correctly.
2. MCP Tool Execution Tests
Status: All tools failing
Input:
{}
Result:
{
content: [...],
isError: true
}
Error message:
"We are having trouble completing this action. Please try again shortly."
Test 2: searchJiraIssuesUsingJql
Input:
{
"cloudId": "9ce6b0b2-fa56-4d46-a42e-babd72af28d6",
"jql": "assignee = currentUser() ORDER BY updated DESC"
}
Result:
Error message:
"We are having trouble completing this action. Please try again shortly."
Test 3: search
Input:
{
"query": "test query"
}
Result:
{
content: [...],
isError: true
}
Error:Cannot read properties of undefined
3. Schema Verification:
Status: Correct
atlassianUserInfo → Called with {}
searchJiraIssuesUsingJql → cloudId + jql provided
search → query provided
All parameters match the tool schemas.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi ,
Thank you for the troubleshooting suggestions. I've completed all the diagnostic checks you recommended. Here are the findings.
1. MCP Server Connection & Tool Schema Loading
Status: WORKING
MCP API URL: https://mcp.atlassian.com/v1/mcp
CloudId: 9ce6b0b2-fa56-4d46-a42e-babd72af28d6
Token exists: true
Site URL: https://gravie.atlassian.net
MCP client created: SUCCESS
Tools loaded: 20+ tools
All tool schemas load correctly.
2. MCP Tool Execution Tests
Status: All tools failing
Input:
{}
Result:
{
content: [...],
isError: true
}
Error message:
"We are having trouble completing this action. Please try again shortly."
Test 2: searchJiraIssuesUsingJql
Input:
{
"cloudId": "9ce6b0b2-fa56-4d46-a42e-babd72af28d6",
"jql": "assignee = currentUser() ORDER BY updated DESC"
}
Result:
Error message:
"We are having trouble completing this action. Please try again shortly."
Test 3: search
Input:
{
"query": "test query"
}
Result:
{
content: [...],
isError: true
}
Error:Cannot read properties of undefined
3. Schema Verification:
Status: Correct
atlassianUserInfo → Called with {}
searchJiraIssuesUsingJql → cloudId + jql provided
search → query provided
All parameters match the tool schemas.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Deepak Chikane ,
Thanks for sharing the detailed test results. Based on what you posted, this does not look like a tool schema problem anymore. Since the MCP server connects, the tools render, and all executions fail at runtime, the issue is more likely related to authentication, scopes, or org/admin policy during invocation rather than MCP registration itself. Atlassian’s troubleshooting guide points to exactly those areas when setup looks correct but tool execution still fails.
A few things stand out from your examples:
atlassianUserInfo depends on user identity access
searchJiraIssuesUsingJql needs Jira read permissions
search is a separate Rovo search capability
Atlassian documents these tool requirements in the supported tools list, so it is possible for tools to appear correctly in discovery but still fail when the granted auth context is incomplete at execution time.
The first thing I would verify is the auth method you are using. If this is a personal Atlassian API token, Atlassian says it must be sent via HTTP Basic Auth using Basic base64(email:api_token). If you are sending that personal token as Bearer, the tools can fail even though the MCP endpoint itself is reachable.
I would also check whether API token authentication is enabled by your organization admin. Atlassian says API-token auth is optional and must be allowed in the Rovo MCP server settings. If that setting is off, execution can fail even when discovery works.
Another thing to confirm is whether your org/site controls are allowing the request path fully. Atlassian notes that access can also be affected by admin-managed controls around Rovo MCP usage and supported/custom domains, so this can show up as a runtime failure rather than a schema error.
Given your results, my conclusion is:
not a schema-loading issue
likely an auth/scopes/admin-policy issue
possibly a product-side runtime issue for search, because Cannot read properties of undefined looks more like an internal execution bug than an input mismatch
The cleanest retest order would be:
re-authenticate from scratch
verify correct auth format
test atlassianUserInfo
test getAccessibleAtlassianResources
then test searchJiraIssuesUsingJql with the returned cloudId
test search last
If all of those still fail after re-auth with the correct method and permissions, I would treat it as an Atlassian-side MCP runtime issue and raise it with Atlassian Support, because at that point your configuration looks structurally correct and the failure is happening during execution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Try these quick checks first:
Confirm the MCP server is connected and the tool schema is loading correctly, since you mentioned the tools are rendering.
Test with another MCP tool if available, just to verify whether the issue is only with mcpTools.atlassianUserInfo or with MCP execution in general.
Recheck the tool input/output schema for mcpTools.atlassianUserInfo, because sometimes the tool appears in Rovo but fails at runtime if the schema or response format is not exactly what Rovo expects.
Review the MCP server logs while triggering the action. That usually shows whether the request is reaching the server or failing before execution.
Try reconnecting the MCP integration or re-registering the tool, as stale registration can sometimes cause this generic “Please try again shortly” error.
Since the error is happening specifically for mcpTools.atlassianUserInfo and not during tool rendering, this looks more like a runtime execution or response-format issue rather than a setup issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Prasanna Ravichandran ,
Thank you for the troubleshooting suggestions. I've completed all the diagnostic checks you recommended. Here are the findings.
1. MCP Server Connection & Tool Schema Loading
Status: WORKING
MCP API URL: https://mcp.atlassian.com/v1/mcp
CloudId: 9ce6b0b2-fa56-4d46-a42e-babd72af28d6
Token exists: true
Site URL: https://gravie.atlassian.net
MCP client created: SUCCESS
Tools loaded: 20+ tools
All tool schemas load correctly.
2. MCP Tool Execution Tests
Status: All tools failing
Input:
{}
Result:
{
content: [...],
isError: true
}
Error message:
"We are having trouble completing this action. Please try again shortly."
Test 2: searchJiraIssuesUsingJql
Input:
{
"cloudId": "9ce6b0b2-fa56-4d46-a42e-babd72af28d6",
"jql": "assignee = currentUser() ORDER BY updated DESC"
}
Result:
Error message:
"We are having trouble completing this action. Please try again shortly."
Test 3: search
Input:
{
"query": "test query"
}
Result:
{
content: [...],
isError: true
}
Error:Cannot read properties of undefined
3. Schema Verification:
Status: Correct
atlassianUserInfo → Called with {}
searchJiraIssuesUsingJql → cloudId + jql provided
search → query provided
All parameters match the tool schemas.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.