Skip to main content
Glama

redmine-mcp

Redmine のチケットを操作する MCP(Model Context Protocol)サーバーです。Cursor や Claude Desktop などから、チケットの取得・一覧・作成・更新ができます。

要件

  • Node.js 18.0.0 以上

  • Redmine で REST API が有効であること

  • Redmine の API アクセスキー(個人設定で取得)

Related MCP server: Redmine MCP Server

セットアップ

クローンやビルドは不要で、次の 2 ファイルを置くだけです。

  1. .cursor/redmine.json を作成する。次のいずれかに配置する。

    • ワークスペースのルート(推奨): プロジェクトごとに設定を変えたい場合

    • ~/.cursor/redmine.json(ホーム): 複数プロジェクトで同じ設定を使う場合。ワークスペースに設定が無いときにフォールバックとして読まれる

{
  "redmineUrl": "https://your-redmine.example.com",
  "apiKey": "your-api-access-key"
}
  1. .cursor/mcp.json に本サーバーを追加する。

{
  "mcpServers": {
    "redmine": {
      "command": "npx",
      "args": ["-y", "github:ytakeuchi0222/redmine-mcp"]
    }
  }
}

初回実行時はリポジトリの取得とビルドが走るため、少し時間がかかります。MCP サーバーは起動時のカレントディレクトリを基準に .cursor/redmine.json を探します(Cursor で MCP を起動する場合、カレントディレクトリは通常「開いているフォルダ」=ワークスペースのルートに設定されます)。

注意: redmine.json には API キーが含まれるため、git で管理する場合は.gitignore に含めてリポジトリにコミットしないでください。

提供ツール

ツール名

説明

get_issue

チケット 1 件を取得(issue_id 必須)

list_issues

チケット一覧を取得(project_id, status_id, assigned_to_id, limit, offset で絞り込み可能。limit は最大 100)

create_issue

チケットを新規作成(project_id, subject 必須)

update_issue

チケットを更新(issue_id 必須。subject, description, status_id, assigned_to_id は任意)

具体的な使い方

1. 準備の確認

  • Redmine の API キー: Redmine にログイン → 個人設定 → API アクセスキーで「表示」し、キーをコピーする。

  • 設定ファイル: このリポジトリを開いた状態で、.cursor/redmine.json に以下を保存する(値は自分の環境に合わせる)。

{
  "redmineUrl": "https://あなたのRedmineのURL",
  "apiKey": "ここにAPIキーを貼る"
}

2. Cursor で使う

このリポジトリをワークスペースで開いた状態で、**チャット(Composer や Chat)**で次のように話しかけると、AI が Redmine MCP のツールを呼び出します。

やりたいこと

チャットで入力する例

チケット 1 件を見る

「チケット #123 の内容を教えて」

一覧を取得する

「プロジェクト 5 のチケット一覧を 10 件出して」

担当チケットだけ

「自分にアサインされているチケット一覧を出して」

未完了だけ

「ステータスが open のチケットを 20 件」

チケットを作成

「プロジェクト 1 に『〇〇の不具合』という件名でチケットを作成して」

チケットを更新

「チケット #456 のステータスを『対応済み』に変更して」

ツール名を指定せず、やりたいことを日本語で書くだけで、AI が get_issue / list_issues / create_issue / update_issue を選んで実行します。

3. 各ツールのパラメータ(参考)

  • get_issue: issue_id(例: 123)

  • list_issues: project_id, status_id(数値 or open / closed / *), assigned_to_id(数値 or me), limit, offset(いずれも任意)

  • create_issue: project_id, subject(必須), description, tracker_id, status_id, priority_id, assigned_to_id(任意)

  • update_issue: issue_id(必須), subject, description, status_id, assigned_to_id(任意)

4. うまく動かないとき

  • 「No server info found」: MCP サーバーが起動していない。.cursor/mcp.json の設定が正しいか確認し、MCP を再起動する。

  • 「設定ファイルが見つかりません」: MCP は (1) ワークスペースの .cursor/redmine.json、(2) ~/.cursor/redmine.json の順で探します。どちらかに redmine.json を置いているか確認してください。両方無い場合は「ワークスペースの .cursor/redmine.json と ~/.cursor/redmine.json のどちらも見つかりません」と表示されます。

  • 4xx / 5xx エラー: Redmine の URL・API キー、REST API 有効化、プロジェクト ID やチケット ID が正しいか確認する。


参照

Available Tools

4 tools
create_issueA

チケットを新規作成する(project_id, subject 必須)

ParametersJSON Schema
NameRequiredDescriptionDefault
subjectYes件名(必須)
status_idNo
project_idYesプロジェクト ID(必須)
tracker_idNo
descriptionNo説明
priority_idNo
assigned_to_idNo

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only restates the create action and required fields, without mentioning side effects, permissions, response/output, or what happens on success/failure. This is insufficient for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is one short sentence that front-loads the action and appends the essential requirement in parentheses. There is no redundant wording, and the structure is easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a creation tool with 7 parameters, no annotations, and no output schema, the one-line description is not enough context. It omits return behavior, parameter value guidance, and any caveats about creating an issue, so an agent may not call it with full confidence.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 43%, and the description compensates only by restating that project_id and subject are required. It adds no meaning for status_id, tracker_id, priority_id, assigned_to_id, or description beyond their field names, so several parameters remain underspecified.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource: 'チケットを新規作成する' (create a new ticket), and explicitly names the two required parameters. This clearly distinguishes creation from sibling read tools (get_issue, list_issues) and update_issue.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase '新規作成する' gives clear context that this tool is for creating a new ticket, contrasted with the siblings get/list/update. It does not state explicit when-not-to-use conditions or alternatives, but the action is unambiguous enough to route an agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_issueB

チケット 1 件を取得する

ParametersJSON Schema
NameRequiredDescriptionDefault
issue_idYes取得するチケットの ID

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It says only that a single issue is retrieved, with no mention of read-only behavior, authorization needs, response shape, or what happens if the issue does not exist. For a read operation with zero annotation support, this is a notable gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence with no filler. It is easy to scan and front-loads the verb and resource, though it could add a brief usage hint without becoming bloated.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, no output schema, and a single required parameter, the description is minimally adequate but incomplete. An agent can infer it returns one issue, but it lacks guidance on when to use it versus list_issues, what the return contains, and any call-specific behavior or failure handling.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema already documents issue_id ('取得するチケットの ID') and marks it as required. The description adds no extra semantic detail about the parameter, but because the schema fully covers it, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'チケット 1 件を取得する' states a clear verb (取得する = get/retrieve) and resource (チケット = ticket/issue), and the singular '1 件' distinguishes it from list_issues. However, it does not explicitly name or contrast with siblings, so it stops short of full differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The singular scope implies this is for fetching one specific ticket rather than listing multiple, which weakly distinguishes it from list_issues. There is no explicit guidance about when to prefer get_issue over update_issue or create_issue, and no mention of error conditions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_issuesA

チケット一覧を取得する(project_id, status_id, assigned_to_id, limit, offset で絞り込み可能)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo取得件数(最大 100)
offsetNoオフセット
status_idNoステータス ID (数値 / open / closed / *)
project_idNoプロジェクト ID
assigned_to_idNo担当者 ID (数値 / me)

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden. '取得する' signals a read-only retrieval operation and the filterable behavior is disclosed, but there is no mention of pagination behavior, default limits, or return format. For a simple list operation this is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded Japanese sentence that states the operation and enumerates all filter parameters. There is no waste, and the core purpose appears immediately.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has five optional parameters, no annotations, and no output schema, yet the description covers only the purpose and filterability. It omits context such as the return shape, behavior when no filters are supplied, and how it relates to get_issue. This is minimally viable but has clear gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents every parameter, including limit's maximum of 100 and the special values for status_id and assigned_to_id. The description merely lists the parameter names without adding meaning beyond the schema, matching the baseline of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb and resource: 'チケット一覧を取得する' (retrieve a list of tickets), so an agent knows it fetches multiple issues. It does not explicitly distinguish itself from get_issue, update_issue, or create_issue, but the list-vs-single/mutation contrast is inferable from the naming and wording.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use this tool: when a list of tickets is needed, with optional filters. However, it provides no explicit guidance on when not to use it or when to prefer get_issue for a single ticket, so the usage guidance is only implied rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_issueC

チケットを更新する(issue_id 必須。subject, description, status_id, assigned_to_id は任意)

ParametersJSON Schema
NameRequiredDescriptionDefault
subjectNo
issue_idYes更新するチケットの ID(必須)
status_idNo
descriptionNo
assigned_to_idNo

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden for behavioral disclosure, but it only says the tool updates a ticket and lists mutable fields. It does not clarify whether this is a partial update, whether existing values are overwritten, what permissions are needed, or what side effects occur.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single compact sentence with the main operation front-loaded. The required/optional breakdown is useful and presented efficiently, though the parenthetical style is slightly dense.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with five parameters and no output schema, this description is under-specified. It lacks update semantics, field value details, and any indication of result or error behavior, leaving an agent with significant gaps when calling the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 20%, so the description should compensate, but it only restates which parameters are required or optional. It adds no meaning for fields like status_id or assigned_to_id, such as acceptable formats, allowed values, or relationships.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'チケットを更新する' (update ticket), making the core operation clear. It is distinct from sibling tools like get_issue and create_issue, though it does not explicitly name them.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description only notes that issue_id is required and the other fields are optional, which is parameter guidance rather than usage context. It does not explain when to choose this tool over create_issue, get_issue, or list_issues, nor any exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv1.0.0
    • First observedcreate_issue
    • First observedget_issue
    • First observedlist_issues
    • First observedupdate_issue

TDQS

A3.5/5.0

Scored across 4 tools

Disambiguation5/5

Each tool targets a distinct operation on the issue resource: fetching one, listing many, updating, and creating. There is no overlap or ambiguity between the four tools.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: get_issue, list_issues, update_issue, create_issue. The naming is predictable and easy to infer.

Tool Count5/5

Four tools is well-scoped for a Redmine issue-focused MCP server. Each tool provides a necessary and distinct capability without unnecessary bloat.

Completeness4/5

The core issue lifecycle is covered: create, read single, read list, and update. The only notable gap is the absence of a delete_issue operation, though this can often be worked around via update_issue.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/ytakeuchi0222/redmine-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server