spec-driven-development — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited spec-driven-development (Rules) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Redmine内のイシューを取得する MCP (Model Context Protocol) サーバーです。AI エージェントが Redmine のイシューを効率的に取得できるようにします。
このプロジェクトは、MCP プロトコルに準拠したサーバーを実装し、Redmine のイシューを取得する機能を提供します。Claude Desktop やその他の MCP クライアントから使用できます。
git clone https://github.com/paterapatera/redmine-mcp.git
cd redmine-mcpbun install必須の環境変数:
export REDMINE_API_KEY="your-api-key-here"
export REDMINE_URL="https://redmine.example.com"bun run buildビルド後、dist/index.js が生成されます。
ローカル開発環境で使用する場合、bun link を使用します:
# プロジェクトディレクトリで実行
bun link
# グローバルにリンクされた後、どこからでも実行可能
redmine-mcp環境変数を指定する場合:
REDMINE_API_KEY="your-api-key-here" REDMINE_URL="https://redmine.example.com" redmine-mcpこのサーバーは MCP クライアント(例: Claude Desktop, MCP Inspector)から使用されます。
#### Claude Desktop での設定
claude_desktop_config.json に以下を追加:
bun link を使用する場合(推奨):
{
"mcpServers": {
"redmine-mcp": {
"command": "redmine-mcp",
"env": {
"REDMINE_API_KEY": "your-api-key-here",
"REDMINE_URL": "https://redmine.example.com"
}
}
}
}bun link でグローバルにリンクされている場合、redmine-mcp コマンドが使用可能になります。
ローカルパスを使用する場合:
{
"mcpServers": {
"redmine-mcp": {
"command": "bun",
"args": ["/path/to/redmine-mcp/dist/index.js"],
"env": {
"REDMINE_API_KEY": "your-api-key-here",
"REDMINE_URL": "https://redmine.example.com"
}
}
}
}bun dist/index.jsただし、通常は MCP クライアント経由で使用します。
bun testMCP Inspector を使用してサーバーをテストする方法については、MCP_INSPECTOR_GUIDE.md を参照してください。
簡単な手順:
# 1. 環境変数を設定
export REDMINE_API_KEY="your-api-key-here"
export REDMINE_URL="https://redmine.example.com"
# 2. ビルド
bun run build
# 3. MCP Inspector を起動
bun run inspector<!-- ACTION REQUIRED: このセクションには、プロジェクトのアーキテクチャに関する 情報を記載してください。 -->
| 変数名 | 必須 | 説明 |
|---|---|---|
| REDMINE_API_KEY | はい | Redmine の API キー |
| REDMINE_URL | はい | Redmine インスタンスのベース URL |
<!-- ACTION REQUIRED: よくある問題とその解決策をここに記載してください。 -->
# 依存関係のインストール
bun install
# 開発モードでテストを実行
bun test --watch
# ビルド
bun run buildISC
このプロジェクトは個人プロジェクトです。問題や改善提案がある場合は、Issue を作成してください。
注意: このプロジェクトは bun link を使用したローカル開発環境での利用を想定しています。npm への公開は想定していません。
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.