Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
execute_jql | Execute a JQL query on Jira on the api /rest/api/3/search. Do not use markdown in your query. |
get_only_ticket_name_and_description | Get the name and description of the requested tickets on the api /rest/api/3/search. Do not use markdown in your query. |
create_ticket | Create a ticket on Jira on the api /rest/api/3/issue. Do not use markdown in any field. |
list_projects | List all the projects on Jira on the api /rest/api/3/project. Do not use markdown in your query. |
delete_ticket | Delete a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}. Do not use markdown in your query. |
edit_ticket | Edit a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}. Do not use markdown in any field. |
get_all_statuses | Get all the status on Jira on the api /rest/api/3/status. Do not use markdown in your query. |
assign_ticket | Assign a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/assignee. Do not use markdown in your query. |
query_assignable | Query assignables to a ticket on Jira on the api /rest/api/3/user/assignable/search?project={project-name}. Do not use markdown in your query. |
add_attachment_from_public_url | Add an attachment from a public url to a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/attachments. Do not use markdown in your query. |
add_attachment_from_confluence | Add an attachment to a ticket on Jira from a Confluence page by its name on the api /rest/api/3/issue/{issueIdOrKey}/attachments. Do not use markdown in your query. |