Documentation Index Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
Use this file to discover all available pages before exploring further.
This monolithic /jira application server is legacy . For new integrations, use the Jira Cloud page and its child server paths (/jira-issues, /jira-projects, /jira-users).
Server path: /jira | Type: Application | PCID required: Yes
Tool Description jira_create_issueCreate a new issue in Jira jira_update_issueUpdate an existing issue in Jira jira_get_issueGet details of a specific issue by ID or key jira_search_issuesSearch for issues using JQL (Jira Query Language) jira_get_projectsGet all projects that the user has permission to view jira_search_userSearch for users by email address or display name jira_assign_issueAssign an issue to a user by account ID jira_add_comment_to_issueAdd a comment to a Jira issue jira_list_issue_commentsList all comments on a Jira issue jira_add_attachment_to_issueAdd an attachment to a Jira issue jira_transition_issueTransition a Jira issue to a different status jira_get_transitionsGet available transitions for a Jira issue
jira_create_issue
Create a new issue in Jira
Parameters:
Parameter Type Required Default Description projectKeystring Yes — Project key (e.g., “SUP”) summarystring Yes — Issue summary/title descriptionstring Yes — Issue description (plain text or markdown) issueTypestring No "Task"Issue type (e.g., “Bug”, “Task”, “Story”, “Epic”, “Subtask)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "PinkConnect ID"
},
"projectKey" : {
"type" : "string" ,
"description" : "Project key (e.g., \" SUP \" )"
},
"summary" : {
"type" : "string" ,
"description" : "Issue summary/title"
},
"description" : {
"type" : "string" ,
"description" : "Issue description (plain text or markdown)"
},
"issueType" : {
"type" : "string" ,
"default" : "Task" ,
"description" : "Issue type (e.g., \" Bug \" , \" Task \" , \" Story \" , \" Epic \" , \" Subtask)"
}
},
"required" : [
"PCID" ,
"projectKey" ,
"summary" ,
"description"
]
}
jira_update_issue
Update an existing issue in Jira
Parameters:
Parameter Type Required Default Description issueIdstring Yes — Issue ID or key to update summarystring No — Updated issue summary/title descriptionstring No — Updated issue description (plain text or markdown) assigneestring No — Account ID of the user to assign to statusstring No — Status to set for the issue prioritystring No — Priority ID as string: “1”=Highest, “2”=High, “3”=Medium, “4”=Low, “5”=Lowest
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "PinkConnect ID"
},
"issueId" : {
"type" : "string" ,
"description" : "Issue ID or key to update"
},
"summary" : {
"type" : "string" ,
"description" : "Updated issue summary/title"
},
"description" : {
"type" : "string" ,
"description" : "Updated issue description (plain text or markdown)"
},
"assignee" : {
"type" : "string" ,
"description" : "Account ID of the user to assign to"
},
"status" : {
"type" : "string" ,
"description" : "Status to set for the issue"
},
"priority" : {
"type" : "string" ,
"description" : "Priority ID as string: \" 1 \" =Highest, \" 2 \" =High, \" 3 \" =Medium, \" 4 \" =Low, \" 5 \" =Lowest"
}
},
"required" : [
"PCID" ,
"issueId"
]
}
jira_get_issue
Get details of a specific issue by ID or key
Parameters:
Parameter Type Required Default Description issueIdstring Yes — Issue ID or key to retrieve
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "PinkConnect ID"
},
"issueId" : {
"type" : "string" ,
"description" : "Issue ID or key to retrieve"
}
},
"required" : [
"PCID" ,
"issueId"
]
}
jira_search_issues
Search for issues using JQL (Jira Query Language)
Parameters:
Parameter Type Required Default Description jqlstring No — JQL query string (e.g., “project = PROJ AND priority = High AND created >= -7d”) startAtnumber No 0Starting index for pagination (default: 0) maxResultsnumber No 50Maximum number of issues to return (default: 50) fieldsstring[] No — List of fields to return (e.g., [“summary”, “status”])
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "PinkConnect ID"
},
"jql" : {
"type" : "string" ,
"description" : "JQL query string (e.g., \" project = PROJ AND priority = High AND created >= -7d \" )"
},
"startAt" : {
"type" : "number" ,
"default" : 0 ,
"description" : "Starting index for pagination (default: 0)"
},
"maxResults" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of issues to return (default: 50)"
},
"fields" : {
"type" : "array" ,
"items" : {
"type" : "string"
},
"description" : "List of fields to return (e.g., [ \" summary \" , \" status \" ])"
}
},
"required" : [
"PCID"
]
}
jira_get_projects
Get all projects that the user has permission to view
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "PinkConnect ID"
}
},
"required" : [
"PCID"
]
}
jira_search_user
Search for users by email address or display name
Parameters:
Parameter Type Required Default Description querystring Yes — Search query (email address or display name)
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "PinkConnect ID"
},
"query" : {
"type" : "string" ,
"description" : "Search query (email address or display name)"
}
},
"required" : [
"PCID" ,
"query"
]
}
jira_assign_issue
Assign an issue to a user by account ID
Parameters:
Parameter Type Required Default Description issueIdOrKeystring Yes — Issue ID or key to assign accountIdstring Yes — Account ID of the user to assign to
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "PinkConnect ID"
},
"issueIdOrKey" : {
"type" : "string" ,
"description" : "Issue ID or key to assign"
},
"accountId" : {
"type" : "string" ,
"description" : "Account ID of the user to assign to"
}
},
"required" : [
"PCID" ,
"issueIdOrKey" ,
"accountId"
]
}
Add a comment to a Jira issue
Parameters:
Parameter Type Required Default Description issueIdOrKeystring Yes — Issue ID or key to add comment to commentstring Yes — Comment text to add to the issue
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"issueIdOrKey" : {
"type" : "string" ,
"description" : "Issue ID or key to add comment to"
},
"comment" : {
"type" : "string" ,
"description" : "Comment text to add to the issue"
}
},
"required" : [
"PCID" ,
"issueIdOrKey" ,
"comment"
]
}
List all comments on a Jira issue
Parameters:
Parameter Type Required Default Description issueIdOrKeystring Yes — Issue ID or key to list comments for maxResultsnumber No 50Maximum number of comments to return
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"issueIdOrKey" : {
"type" : "string" ,
"description" : "Issue ID or key to list comments for"
},
"maxResults" : {
"type" : "number" ,
"default" : 50 ,
"description" : "Maximum number of comments to return"
}
},
"required" : [
"PCID" ,
"issueIdOrKey"
]
}
jira_add_attachment_to_issue
Add an attachment to a Jira issue
Parameters:
Parameter Type Required Default Description issueIdOrKeystring Yes — Issue ID or key to add attachment to fileUrlstring Yes — URL of the file to attach filenamestring Yes — Name for the attached file
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"issueIdOrKey" : {
"type" : "string" ,
"description" : "Issue ID or key to add attachment to"
},
"fileUrl" : {
"type" : "string" ,
"description" : "URL of the file to attach"
},
"filename" : {
"type" : "string" ,
"description" : "Name for the attached file"
}
},
"required" : [
"PCID" ,
"issueIdOrKey" ,
"fileUrl" ,
"filename"
]
}
jira_transition_issue
Transition a Jira issue to a different status
Parameters:
Parameter Type Required Default Description issueIdOrKeystring Yes — Issue ID or key to transition transitionIdstring Yes — ID of the transition to perform commentstring No — Optional comment to add during transition
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"issueIdOrKey" : {
"type" : "string" ,
"description" : "Issue ID or key to transition"
},
"transitionId" : {
"type" : "string" ,
"description" : "ID of the transition to perform"
},
"comment" : {
"type" : "string" ,
"description" : "Optional comment to add during transition"
}
},
"required" : [
"PCID" ,
"issueIdOrKey" ,
"transitionId"
]
}
jira_get_transitions
Get available transitions for a Jira issue
Parameters:
Parameter Type Required Default Description issueIdOrKeystring Yes — Issue ID or key to get transitions for
{
"type" : "object" ,
"properties" : {
"PCID" : {
"type" : "string" ,
"description" : "Pink Connect ID"
},
"issueIdOrKey" : {
"type" : "string" ,
"description" : "Issue ID or key to get transitions for"
}
},
"required" : [
"PCID" ,
"issueIdOrKey"
]
}