Skip to content

Commit ba7c934

Browse files
authored
Shorten Jira tool names exceeding Cursor limit (#580)
1 parent 2f59c3d commit ba7c934

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

app/en/mcp-servers/productivity/jira/page.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ When the user selects an Atlassian Cloud, it may be appropriate to keep this inf
154154
"Browse the priority schemes available in Jira.",
155155
],
156156
[
157-
"Jira.ListPrioritiesAssociatedWithAPriorityScheme",
157+
"Jira.ListPrioritiesByScheme",
158158
"Browse the priorities associated with a priority scheme.",
159159
],
160160
[
161-
"Jira.ListProjectsAssociatedWithAPriorityScheme",
161+
"Jira.ListProjectsByScheme",
162162
"Browse the projects associated with a priority scheme.",
163163
],
164164
[
@@ -1202,7 +1202,7 @@ Browse the priority schemes available in Jira.
12021202
- **order_by** (`Enum` [PrioritySchemeOrderBy](/mcp-servers/productivity/jira/reference#PrioritySchemeOrderBy), optional) The order in which to return the priority schemes. Defaults to name ascending.
12031203
- **atlassian_cloud_id** (`string`, optional) The ID of the Atlassian Cloud to use (defaults to None). If not provided and the user has a single cloud authorized, the tool will use that. Otherwise, an error will be raised.
12041204

1205-
## Jira.ListPrioritiesAssociatedWithAPriorityScheme
1205+
## Jira.ListPrioritiesByScheme
12061206

12071207
<br />
12081208
<TabbedCodeBlock
@@ -1211,10 +1211,10 @@ Browse the priority schemes available in Jira.
12111211
label: "Call the Tool Directly",
12121212
content: {
12131213
Python: [
1214-
"/examples/integrations/mcp-servers/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.py",
1214+
"/examples/integrations/mcp-servers/jira/list_priorities_by_scheme_example_call_tool.py",
12151215
],
12161216
JavaScript: [
1217-
"/examples/integrations/mcp-servers/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.js",
1217+
"/examples/integrations/mcp-servers/jira/list_priorities_by_scheme_example_call_tool.js",
12181218
],
12191219
},
12201220
},
@@ -1230,7 +1230,7 @@ Browse the priorities associated with a priority scheme.
12301230
- **offset** (`integer`, optional) The number of priority schemes to skip. Defaults to 0 (start from the first scheme).
12311231
- **atlassian_cloud_id** (`string`, optional) The ID of the Atlassian Cloud to use (defaults to None). If not provided and the user has a single cloud authorized, the tool will use that. Otherwise, an error will be raised.
12321232

1233-
## Jira.ListProjectsAssociatedWithAPriorityScheme
1233+
## Jira.ListProjectsByScheme
12341234

12351235
<br />
12361236
<TabbedCodeBlock
@@ -1239,10 +1239,10 @@ Browse the priorities associated with a priority scheme.
12391239
label: "Call the Tool Directly",
12401240
content: {
12411241
Python: [
1242-
"/examples/integrations/mcp-servers/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.py",
1242+
"/examples/integrations/mcp-servers/jira/list_projects_by_scheme_example_call_tool.py",
12431243
],
12441244
JavaScript: [
1245-
"/examples/integrations/mcp-servers/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.js",
1245+
"/examples/integrations/mcp-servers/jira/list_projects_by_scheme_example_call_tool.js",
12461246
],
12471247
},
12481248
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Arcade } from "@arcadeai/arcadejs";
33
const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable
44

55
const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.)
6-
const TOOL_NAME = "Jira.ListPrioritiesAssociatedWithAPriorityScheme";
6+
const TOOL_NAME = "Jira.ListPrioritiesByScheme";
77

88
// Start the authorization process
99
const authResponse = await client.tools.authorize({tool_name: TOOL_NAME, user_id: USER_ID});
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable
55

66
USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.)
7-
TOOL_NAME = "Jira.ListPrioritiesAssociatedWithAPriorityScheme"
7+
TOOL_NAME = "Jira.ListPrioritiesByScheme"
88

99
auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=USER_ID)
1010

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Arcade } from "@arcadeai/arcadejs";
33
const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable
44

55
const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.)
6-
const TOOL_NAME = "Jira.ListProjectsAssociatedWithAPriorityScheme";
6+
const TOOL_NAME = "Jira.ListProjectsByScheme";
77

88
// Start the authorization process
99
const authResponse = await client.tools.authorize({tool_name: TOOL_NAME, user_id: USER_ID});
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable
55

66
USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.)
7-
TOOL_NAME = "Jira.ListProjectsAssociatedWithAPriorityScheme"
7+
TOOL_NAME = "Jira.ListProjectsByScheme"
88

99
auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=USER_ID)
1010

0 commit comments

Comments
 (0)