redmine-mcp-server
Provides tools for managing Redmine issues and projects, including listing, creating, updating issues, adding comments, and fetching project lists.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@redmine-mcp-servershow me all issues assigned to me"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Redmine MCP Server
AWS Lambda + API Gateway で動作する Redmine 向け MCP (Model Context Protocol) サーバーです。 GenU などの AI エージェントから Redmine のチケット・プロジェクトを操作できます。
機能 (Tools)
ツール名 | 説明 |
| チケット一覧の取得・検索 |
| チケット詳細・コメント・添付ファイルの取得 |
| 新規チケットの作成 |
| 既存チケットの更新 |
| チケットへのコメント追加 |
| プロジェクト一覧の取得 |
Related MCP server: redmine-mcp-server
必要環境
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 install2. 環境変数の設定
cp .env.example .env.env を編集:
REDMINE_URL=https://your-redmine.example.com
REDMINE_API_KEY=your_api_key_hereRedmine APIキーの取得方法 Redmine にログイン → 右上のユーザー名 → 「個人設定」→「APIアクセスキー」を表示
3. ローカル起動・動作確認
npm run devMCP Endpoint : http://localhost:3000/mcp
Health Check : http://localhost:3000/healthAWS 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/healthGenU への接続設定
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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rag-poc-pj/redmine-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server