Skip to main content
Glama
0xkillaflow

Redmine MCP Server

by 0xkillaflow

Create issue relation

redmine_create_issue_relation

Link two issues with a typed dependency relation – specify the source, target, and how they relate (e.g., blocks, precedes, relates).

Instructions

Link two issues with a typed relation — how dependencies are recorded when planning, e.g. "#42 cannot start until #17 ships". The relation is directional and reads as "issue_id issue_to_id", so state it once from the source issue: Redmine stores a single record and presents the inverse automatically on the other issue. Do NOT call this tool again with the ids swapped to "complete the pair" — that is either rejected as a duplicate or creates a second, redundant link. Use "relates" when no ordering is implied. delay (in days) applies only to "precedes"/"follows". Redmine rejects some relations on purpose — relating an issue to itself, a duplicate of an existing link, a circular "precedes" chain, or a cross-project link when the "cross_project_issue_relations" setting is off — and its message is passed back verbatim, so read it rather than retrying blindly. Read existing links first with redmine_list_issue_relations; undo one with redmine_delete_issue_relation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
delayNoDays between the predecessor finishing and the successor starting. Meaningful ONLY for "precedes" and "follows"; passing it with any other relation type is rejected.
issue_idYesNumeric id of the SOURCE issue — the one the relation is stated from.
issue_to_idYesNumeric id of the TARGET issue — the one the relation points at.
relation_typeYesHow the source relates to the target, read as "issue_id <relation_type> issue_to_id": "relates" — a plain, non-directional link, and the right default when unsure; "blocks" — this issue blocks the target, so the target cannot be finished until this one is; "blocked" — this issue is blocked by the target; "precedes" — this issue must finish before the target starts; "follows" — this issue starts only after the target finishes; "duplicates" — this issue is a duplicate of the target; "duplicated" — the target is a duplicate of this issue; "copied_to" — the target was copied from this issue; "copied_from" — this issue was copied from the target (Redmine normally creates the copy pair itself when an issue is copied).
Behavior4/5

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

Adds behavioral context beyond annotations: directional relation, automatic inverse, duplicate prevention, and error handling (Redmine rejects certain relations and passes messages verbatim). Annotations already indicate non-readonly, non-idempotent, and non-destructive, and the description aligns with this.

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 dense but well-structured: starts with purpose, then directionality, warnings, parameter specifics, and error handling. Every sentence adds value, though slightly long. Front-loaded with the most important usage guidance.

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

Completeness4/5

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

Covers usage, behavior, parameter details, and error handling comprehensively. However, lacks explicit description of the success response (the created relation object). Given no output schema, this is a minor gap. Overall very complete for a create tool.

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

Parameters5/5

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

Schema coverage is 100%, and the description adds significant meaning beyond the schema: details each relation_type enum value, explains delay applicability only to precedes/follows, and provides an example. This helps the agent understand parameter usage clearly.

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 clearly states the tool creates a typed relation between two issues, including an example and explanation of directionality. It distinguishes itself from sibling tools like redmine_list_issue_relations and redmine_delete_issue_relation by explicitly mentioning reading and deleting relations.

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

Usage Guidelines5/5

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

Provides explicit when-to-use (link issues for planning), when-not-to-use (do not call again with swapped ids to avoid duplicates), and suggests alternatives (read existing links first with redmine_list_issue_relations, undo with redmine_delete_issue_relation). Also advises reading error messages instead of retrying.

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

Install Server

Other Tools

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/0xkillaflow/agama-redmine-mcp'

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