{"id":26570955,"url":"https://github.com/KS-GEN-AI/jira-mcp-server","last_synced_at":"2025-03-22T22:20:00.575Z","repository":{"id":267928733,"uuid":"902274459","full_name":"KS-GEN-AI/jira-mcp-server","owner":"KS-GEN-AI","description":"A test of jira mcp server","archived":false,"fork":false,"pushed_at":"2025-02-05T14:42:24.000Z","size":32,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-02-05T15:43:43.304Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KS-GEN-AI.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2024-12-12T08:51:16.000Z","updated_at":"2025-02-05T14:42:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"476b6e3f-86fd-4822-aab0-2e5a481fe4ad","html_url":"https://github.com/KS-GEN-AI/jira-mcp-server","commit_stats":null,"previous_names":["ks-gen-ai/jira-mcp-server"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KS-GEN-AI%2Fjira-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KS-GEN-AI%2Fjira-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KS-GEN-AI%2Fjira-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KS-GEN-AI%2Fjira-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KS-GEN-AI","download_url":"https://codeload.github.com/KS-GEN-AI/jira-mcp-server/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245026770,"owners_count":20549197,"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","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":[],"created_at":"2025-03-22T22:19:24.902Z","updated_at":"2025-03-22T22:20:00.567Z","avatar_url":"https://github.com/KS-GEN-AI.png","language":"JavaScript","funding_links":[],"categories":["Productivity","Project Management MCP Servers","MCP 服务器精选列表","Legend","پیاده‌سازی‌های سرور","Table of Contents","Task and Project Management","🌐 Web Development","Server Implementations"],"sub_categories":["Atlassian","🛠️ 效率工具与集成 (Office, Project Management, Notes, etc.)","🛠️ \u003ca name=\"other-tools-and-integrations\"\u003e\u003c/a\u003eOther Tools and Integrations","🛠️ \u003ca name=\"other-tools-and-integrations\"\u003e\u003c/a\u003eسایر ابزارها و یکپارچه‌سازی‌ها","Other Tools and Integrations"],"readme":"# Jira communication server MCP Server\n\nTalk to Jira\n\nThis is a TypeScript-based MCP server that provides tools to interact with Jira. It demonstrates core MCP concepts by providing:\n\n- Tools for executing JQL queries\n- Tools for creating, editing, and deleting Jira tickets\n- Tools for listing Jira projects and statuses\n\n## Features\n\n## Jira Tools\n\n### `execute_jql`\n- **Purpose**: Run a JQL query.\n- **Parameters**: `jql`, `number_of_results` (default: 1).\n\n### `get_only_ticket_name_and_description`\n- **Purpose**: Fetch ticket name and description.\n- **Parameters**: `jql`, `number_of_results` (default: 1).\n\n### `create_ticket`\n- **Purpose**: Create a Jira ticket.\n- **Parameters**: `project.key`, `summary`, `description`, `issuetype.name`, `parent` (optional).\n\n### `list_projects`\n- **Purpose**: List Jira projects.\n- **Parameters**: `number_of_results` (default: 1).\n\n### `delete_ticket`\n- **Purpose**: Delete a ticket.\n- **Parameters**: `issueIdOrKey`.\n\n### `edit_ticket`\n- **Purpose**: Modify a ticket.\n- **Parameters**: `issueIdOrKey`, `summary` (optional), `description` (optional), `labels` (optional), `parent` (optional).\n\n### `get_all_statuses`\n- **Purpose**: Retrieve all statuses.\n- **Parameters**: `number_of_results` (default: 1).\n\n### `assign_ticket`\n- **Purpose**: Assign a ticket to a user.\n- **Parameters**: `accountId`, `issueIdOrKey`.\n\n### `query_assignable`\n- **Purpose**: Find assignable users in a project.\n- **Parameters**: `project_key`.\n\n### `add_attachment`\n- **Purpose**: Add an attachment to a ticket.\n- **Parameters**: `issueIdOrKey`, `imageUrl`.\n\n## Development\n\nInstall dependencies:\n```bash\nnpm install\n```\n\nBuild the server:\n```bash\nnpm run build\n```\n\nFor development with auto-rebuild:\n```bash\nnpm run watch\n```\n\n## Installation\n\nTo use with Claude Desktop, add the server config:\n\nOn MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`\nOn Windows: `%APPDATA%/Claude/claude_desktop_config.json`\n\n```json\n{\n  \"mcpServers\": {\n    \"Jira communication server\": {\n      \"command\": \"node\",\n      \"args\": [\n        \"/PATH_TO_THE_PROJECT/build/index.js\"\n      ],\n      \"env\": {\n        \"JIRA_URL\": \"https://XXXXXXXX.atlassian.net\",\n        \"JIRA_API_MAIL\": \"Your email\",\n        \"JIRA_API_KEY\": \"KEY_FROM : https://id.atlassian.com/manage-profile/security/api-tokens\"\n      }\n    }\n  }\n}\n```\n\n### Debugging\n\nSince MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:\n\n```bash\nnpm run inspector\n```\n\nThe Inspector will provide a URL to access debugging tools in your browser.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKS-GEN-AI%2Fjira-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKS-GEN-AI%2Fjira-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKS-GEN-AI%2Fjira-mcp-server/lists"}