Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

人間をMCPツールとして提供するMCPサーバー

<a href="https://glama.ai/mcp/servers/@upamune/human-mcp">
<img width="380" height="200" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP server" />
</a>

Comment on lines +5 to +8
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

外部リンクのセキュリティ属性追加と画像の歪み防止(またはMarkdown化)を提案

バッジ追加は有用です。細部のブラッシュアップとして以下いずれかを推奨します。

  • target/_blank に伴う rel="noopener noreferrer" の付与(セキュリティ/パフォーマンス)
  • height の固定除去(縦横比の歪み防止)
  • alt の日本語化(閲覧者言語に合わせたアクセシビリティ)
  • 可能なら Markdown 記法に統一(シンプルで GitHub での互換性も高い)

Option A: 現行の HTML を維持して改善

-<a href="https://glama.ai/mcp/servers/@upamune/human-mcp">
-  <img width="380" height="200" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP server" />
-</a>
+<a href="https://glama.ai/mcp/servers/@upamune/human-mcp" target="_blank" rel="noopener noreferrer">
+  <img width="380" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP サーバー" />
+</a>

Option B: Markdown に置き換え(最も簡潔)

-<a href="https://glama.ai/mcp/servers/@upamune/human-mcp">
-  <img width="380" height="200" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP server" />
-</a>
+[![human-mcp MCP サーバー](https://glama.ai/mcp/servers/@upamune/human-mcp/badge)](https://glama.ai/mcp/servers/@upamune/human-mcp)

リンクの健全性を一度確認しておくと安心です。以下で 200 応答を確認できます。


🏁 Script executed:

#!/bin/bash
set -euo pipefail
for url in \
  "https://glama.ai/mcp/servers/@upamune/human-mcp" \
  "https://glama.ai/mcp/servers/@upamune/human-mcp/badge"
do
  echo "Checking: $url"
  status=$(curl -s -o /dev/null -w "%{http_code}" "$url")
  echo "HTTP $status"
  if [ "$status" != "200" ]; then
    echo "Non-200 for $url" >&2
    exit 1
  fi
done

Length of output: 831


リンク正常確認済み:外部リンクのセキュリティ強化&画像表示のブラッシュアップ提案

両URLともHTTP 200を確認しました。GitHub上での表示やアクセシビリティ向上のため、以下いずれかの対応をおすすめします。

Option A: HTML表記を残して改善

-<a href="https://glama.ai/mcp/servers/@upamune/human-mcp">
-  <img width="380" height="200" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP server" />
-</a>
+<a href="https://glama.ai/mcp/servers/@upamune/human-mcp" target="_blank" rel="noopener noreferrer">
+  <img width="380" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP サーバー" />
+</a>

Option B: Markdown記法に統一(もっともシンプル)

-<a href="https://glama.ai/mcp/servers/@upamune/human-mcp">
-  <img width="380" height="200" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP server" />
-</a>
+[![human-mcp MCP サーバー](https://glama.ai/mcp/servers/@upamune/human-mcp/badge)](https://glama.ai/mcp/servers/@upamune/human-mcp)

target="_blank" rel="noopener noreferrer" で外部リンクの安全性・パフォーマンスを確保
height 属性を外すことで縦横比の歪みを防止
alt を日本語化し、閲覧者言語に合わせたアクセシビリティ強化

どちらかを選んでREADME.mdを更新すると良いでしょう。

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<a href="https://glama.ai/mcp/servers/@upamune/human-mcp">
<img width="380" height="200" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP server" />
</a>
<a href="https://glama.ai/mcp/servers/@upamune/human-mcp" target="_blank" rel="noopener noreferrer">
<img width="380" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP サーバー" />
</a>
Suggested change
<a href="https://glama.ai/mcp/servers/@upamune/human-mcp">
<img width="380" height="200" src="https://glama.ai/mcp/servers/@upamune/human-mcp/badge" alt="human-mcp MCP server" />
</a>
[![human-mcp MCP サーバー](https://glama.ai/mcp/servers/@upamune/human-mcp/badge)](https://glama.ai/mcp/servers/@upamune/human-mcp)
🤖 Prompt for AI Agents
In README.md around lines 5 to 8, the external HTML link and image should be
hardened and made more accessible: either convert to Markdown image link or keep
HTML but (1) add target="_blank" rel="noopener noreferrer" to the anchor, (2)
remove the height attribute from the img to avoid aspect-ratio distortion (keep
width or use CSS), and (3) replace the alt text with a Japanese description for
better accessibility; pick Option B (Markdown) for simplicity or Option A (HTML)
if you need advanced attributes, then update the README accordingly.

![demo](.github/assets/demo.gif)


Expand Down Expand Up @@ -110,4 +114,4 @@ MIT

## 注意事項

このプロジェクトはジョーク用途を想定しています。実際の運用では、人間のオペレーターの負担や、応答の遅延などを考慮する必要があります。
このプロジェクトはジョーク用途を想定しています。実際の運用では、人間のオペレーターの負担や、応答の遅延などを考慮する必要があります。