redmine-mcp-server
AI agent can manage Redmine tickets and projects via MCP tools.
README
Redmine MCP Server
AWS Lambda + API Gateway で動作する Redmine 向け MCP (Model Context Protocol) サーバーです。 GenU などの AI エージェントから Redmine のチケット・プロジェクトを操作できます。
機能 (Tools)
| ツール名 | 説明 |
|---|---|
get_issues |
チケット一覧の取得・検索 |
get_issue |
チケット詳細・コメント・添付ファイルの取得 |
create_issue |
新規チケットの作成 |
update_issue |
既存チケットの更新 |
add_comment |
チケットへのコメント追加 |
get_projects |
プロジェクト一覧の取得 |
必要環境
- Node.js 20+
- AWS CLI (デプロイ時)
- Serverless Framework v3 (デプロイ時)
セットアップ
1. リポジトリのクローン
git clone https://github.com/YOUR_USERNAME/redmine-mcp-server.git
cd redmine-mcp-server
npm install
2. 環境変数の設定
cp .env.example .env
.env を編集:
REDMINE_URL=https://your-redmine.example.com
REDMINE_API_KEY=your_api_key_here
Redmine APIキーの取得方法 Redmine にログイン → 右上のユーザー名 → 「個人設定」→「APIアクセスキー」を表示
3. ローカル起動・動作確認
npm run dev
MCP Endpoint : http://localhost:3000/mcp
Health Check : http://localhost:3000/health
AWS Lambda へのデプロイ
1. AWS Systems Manager Parameter Store に環境変数を登録
aws ssm put-parameter \
--name "/redmine-mcp/dev/REDMINE_URL" \
--value "https://your-redmine.example.com" \
--type "String"
aws ssm put-parameter \
--name "/redmine-mcp/dev/REDMINE_API_KEY" \
--value "your_api_key_here" \
--type "SecureString"
2. デプロイ
npm run deploy # dev ステージ
npm run deploy:prod # prod ステージ
デプロイ完了後、API Gateway の URL が表示されます:
endpoints:
POST - https://xxxxxxxxxx.execute-api.ap-northeast-1.amazonaws.com/dev/mcp
GET - https://xxxxxxxxxx.execute-api.ap-northeast-1.amazonaws.com/dev/health
GenU への接続設定
GenU の MCP 設定ファイルに以下を追加してください:
{
"mcpServers": {
"redmine": {
"url": "https://xxxxxxxxxx.execute-api.ap-northeast-1.amazonaws.com/dev/mcp",
"transport": "streamable-http"
}
}
}
プロジェクト構成
redmine-mcp-server/
├── src/
│ ├── index.ts # ローカル開発用エントリーポイント
│ ├── lambda.ts # Lambda エントリーポイント
│ ├── app.ts # Express アプリ (HTTP Transport)
│ ├── server.ts # MCP ツール定義
│ └── redmine-client.ts # Redmine REST API クライアント
├── .env.example # 環境変数サンプル
├── .gitignore
├── package.json
├── tsconfig.json
├── serverless.yml # Serverless Framework 設定
└── README.md
ライセンス
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.