{"id":26060691,"url":"https://github.com/parassolanki/jira-mcp-server","last_synced_at":"2025-09-02T01:33:34.917Z","repository":{"id":281039914,"uuid":"943959599","full_name":"ParasSolanki/jira-mcp-server","owner":"ParasSolanki","description":"A model context protocol server for Jira API","archived":false,"fork":false,"pushed_at":"2025-04-09T14:09:37.000Z","size":109,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-05T03:26:23.874Z","etag":null,"topics":["modelcontextprotocol","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ParasSolanki.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-06T14:52:34.000Z","updated_at":"2025-04-09T14:09:40.000Z","dependencies_parsed_at":"2025-03-06T17:36:07.835Z","dependency_job_id":"5ddd8dbe-9f2b-4bdd-8ca5-610ec74f2986","html_url":"https://github.com/ParasSolanki/jira-mcp-server","commit_stats":null,"previous_names":["parassolanki/jira-mcp-server"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/ParasSolanki/jira-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParasSolanki%2Fjira-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParasSolanki%2Fjira-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParasSolanki%2Fjira-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParasSolanki%2Fjira-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ParasSolanki","download_url":"https://codeload.github.com/ParasSolanki/jira-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ParasSolanki%2Fjira-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273218428,"owners_count":25065913,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["modelcontextprotocol","typescript"],"created_at":"2025-03-08T14:30:29.612Z","updated_at":"2025-09-02T01:33:34.909Z","avatar_url":"https://github.com/ParasSolanki.png","language":"TypeScript","funding_links":[],"categories":["Support \u0026 Service Management"],"sub_categories":["How to Submit"],"readme":"# Jira MCP Server\n\n![NPM Version](https://img.shields.io/npm/v/%40parassolanki%2Fjira-mcp-server) ![NPM Downloads](https://img.shields.io/npm/dw/%40parassolanki%2Fjira-mcp-server) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n\nA [Model Context Protocol](https://github.com/modelcontextprotocol) Server for Jira.\n\nProvides integration with Jira through MCP, allowing LLMs to interact with it.\n\n[Jira REST Api Docs](https://developer.atlassian.com/server/jira/platform/rest)\n\n## Installation\n\n### Manual Installation\n\n\u003e Note: Requires Node version to be 22.12.0 or above\n\n1. Create or get Jira Personal Access Token: [Guide](https://confluence.atlassian.com/enterprise/using-personal-access-tokens-1026032365.html)\n\n2. Add server config to Claude Desktop:\n\n   - MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json\n   - Windows: [Check this Guide](https://gist.github.com/feveromo/7a340d7795fca1ccd535a5802b976e1f)\n\n```json\n{\n  \"mcpServers\": {\n    \"jira\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@parassolanki/jira-mcp-server@latest\"],\n      \"env\": {\n        \"JIRA_PERSONAL_ACCESS_TOKEN\": \"email@example.com:your_personal_jira_access_token\",\n        \"JIRA_BASE_URL\": \"jira_base_url\"\n      }\n    }\n  }\n}\n```\n\nFor Windows:\n\n```json\n{\n  \"mcpServers\": {\n    \"jira\": {\n      \"command\": \"cmd /c npx\",\n      \"args\": [\"-y\", \"@parassolanki/jira-mcp-server@latest\"],\n      \"env\": {\n        \"JIRA_PERSONAL_ACCESS_TOKEN\": \"email@example.com:your_personal_jira_access_token\",\n        \"JIRA_BASE_URL\": \"jira_base_url\"\n      }\n    }\n  }\n}\n```\n\n## Components\n\n### Tools\n\n1.  `list_projects`: List projects from Jira.\n\n    - Required inputs:\n      - `query` (optional string): A query string used to filter the returned projects.\n      - `maxResults` (optional number, max: 100): The maximum number of results to return.\n      - `expand` (optional string): Expand additional information in the response. (comma separated `description`, `lead`, `issueTypes`, `url`, `projectKeys`, `permissions` and `insight`).\n\n2.  `list_boards`: List boards from a project.\n\n    - Required inputs:\n      - `projectKeyOrId` (string): Key or Id of the project.\n      - `name` (optional string): Name of the project.\n      - `maxResults` (optional number, max: 100): The maximum number of results to return.\n      - `startAt` (optional number): The starting index of the returned boards.\n      - `type` (optional string): The type of boards. (can be one of `scrum` or `kanban`).\n\n3.  `list_sprints_from_board`: List sprints from a board.\n\n    - Required inputs:\n      - `boardId` (string): The ID of the board.\n      - `maxResults` (optional number, max: 100): The maximum number of results to return.\n      - `startAt` (optional number): The starting index of the returned boards.\n\n4.  `list_issues_from_sprint`: List issues from a sprint.\n\n    - Required inputs:\n      - `boardId` (string): The ID of the board.\n      - `sprintId` (string): The ID of the sprint.\n      - `maxResults` (optional number, max: 100): The maximum number of results to return.\n      - `startAt` (optional number): The starting index of the returned boards.\n      - `expand` (optional string): Expand additional information in the response. (comma separated `schema` and `names`).\n\n5.  `create_issue`: Create an issue in Jira (Only supports Task issue type).\n\n    - Required inputs:\n      - `projectKeyOrId` (string): Key or Id of the project.\n      - `summary` (string): The summary/title of the issue.\n      - `description` (string): The description of the issue.\n\n## Usage examples\n\nSome example prompts you can use to interact with Jira:\n\n1. \"Show me all Jira projects\" → execute the list_projects tool to see all available projects.\n2. \"What Kanban boards exist in the DEV project?\" → execute the list_boards tool with the DEV project key and type parameter set to \"kanban\".\n3. \"Show me all the sprints for board ID 123\" → execute the list_sprints_from_board tool to see all sprints associated with board 123.\n4. \"What issues are in sprint 456 on board 123?\" → execute the list_issues_from_sprint tool to see all issues in sprint 456 on board 123.\n5. \"Show me the first 50 issues from the current sprint on the Marketing board\" → first execute list_boards to find the Marketing board ID, then list_sprints_from_board to find the current sprint, then list_issues_from_sprint with maxResults=50.\n\n## Development\n\n1. Install dependencies:\n\n```shell\npnpm install\n```\n\n2. Configure Github Access token in `.env`:\n\n```shell\nJIRA_PERSONAL_ACCESS_TOKEN=email@example.com:your_personal_jira_access_token\nJIRA_BASE_URL=jira_base_url\n```\n\n3. Run locally with watch:\n\n```shell\npnpm dev\n```\n\n4. Build the server:\n\n```shell\npnpm build\n```\n\n5. Local debugging with inspector:\n\n```shell\npnpm inspector\n```\n\n## TODOS\n\n- [x] list_projects\n- [x] list_boards\n- [x] list_sprints_from_board\n- [x] list_issues_from_sprint\n- [ ] get_issue_by_id_or_key\n- [x] create_issue (task issue type only)\n- [ ] create_issue (story, epic, sub-task issue types)\n- [ ] update_issue\n- [ ] delete_an_issue\n- [ ] archieve_an_issue\n- [ ] list_comments_from_issue\n- [ ] get_comment_from_issue_by_id\n- [ ] create_comment_in_issue\n- [ ] update_comment_of_issue\n- [ ] delete_comment_of_issue\n- [ ] list_subtasks_from_issue\n- [ ] get_user_by_username_or_key\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparassolanki%2Fjira-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparassolanki%2Fjira-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparassolanki%2Fjira-mcp-server/lists"}