技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 7 · 3.3k · 16 current installs · 16 all-time installs
⭐ 7
安装量(当前) 16
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:atakanermis/atlassian-mcp
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill's instructions match its stated purpose (running an MCP Atlassian Docker image) but it requires sensitive Jira credentials and pulls an unreviewed container from GHCR while the registry metadata does not declare those credentials — you should verify and limit what you run before installing.
目的
Name/description (run an MCP Atlassian server to access Jira/Confluence) aligns with the provided instructions and script: both pull and run ghcr.io/sooperset/mcp-atlassian:latest with JIRA_URL, JIRA_USERNAME, and JIRA_API_TOKEN.
说明范围
SKILL.md instructs the agent/user to pull and run the Docker image and to provide Jira credentials. The bundled script only validates env vars and runs the container, echoing the URL and username to stdout. It does not read other system files, but the SKILL metadata does not declare the env vars even though the runtime needs them.
安装机制
There is no install spec (instruction-only) and the runtime pulls a container from ghcr.io/sooperset — GHCR is a known registry, but the image contents are unreviewed. Pulling/running a remote container executes third-party code and requires trusting that image.
证书
The skill requires JIRA_URL, JIRA_USERNAME, and JIRA_API_TOKEN to function — these are appropriate for the stated purpose but were not declared in the skill's registry metadata (required envs/primary credential are empty). Passing a long-lived API token into an unverified container can expose credentials if the container exfiltrates data or logs envs; the script also prints the URL/username to stdout (possible log leakage).
持久
The skill does not request always:true, does not modify other skills, and is instruction-only. However, running the container grants it network and runtime privileges on the host (typical for Docker) — so trust boundaries depend on how you run it (user context, network, mounts).
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Atlassian MCP (Jira, Confluence)」。简介:Run the Model Context Protocol (MCP) Atlassian server in Docker, enabling integ…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/atakanermis/atlassian-mcp/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: mcp-atlassian
description: Run the Model Context Protocol (MCP) Atlassian server in Docker, enabling integration with Jira, Confluence, and other Atlassian products. Use when you need to query Jira issues, search Confluence, or interact with Atlassian services programmatically. Requires Docker and valid Jira API credentials.
---
# MCP Atlassian
## Overview
The MCP Atlassian server provides programmatic access to Jira and other Atlassian services through the Model Context Protocol. Run it in Docker with your Jira credentials to query issues, manage projects, and interact with Atlassian tools.
## Quick Start
Pull and run the container with your Jira credentials:
```bash
docker pull ghcr.io/sooperset/mcp-atlassian:latest
docker run --rm -i
-e JIRA_URL=https://your-company.atlassian.net
-e JIRA_USERNAME=your.email@company.com
-e JIRA_API_TOKEN=your_api_token
ghcr.io/sooperset/mcp-atlassian:latest
```
**With script (faster):**
Run the bundled script with your API token:
```bash
JIRA_API_TOKEN=your_token bash scripts/run_mcp_atlassian.sh
```
## Environment Variables
- **JIRA_URL**: Your Atlassian instance URL (e.g., `https://company.atlassian.net`)
- **JIRA_USERNAME**: Your Jira email address
- **JIRA_API_TOKEN**: Your Jira API token (create in [Account Settings → Security](https://id.atlassian.com/manage-profile/security/api-tokens))
## Using MCP Atlassian with Clawdbot
Once running, the MCP server exposes Jira tools for use. Reference the container as an MCP source in your Clawdbot config to query issues, create tasks, or manage Jira directly from your agent.
## Resources
### scripts/
- **run_mcp_atlassian.sh** - Simplified runner script with credential handling