redmine-mcp-stateless
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| REDMINE_MCP_PORT | No | 8000 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_projectsB | Returns a list of Redmine projects. |
| get_projectC | Returns details of the specified project. |
| list_issuesC | Returns a list of issues. |
| get_issueB | Returns details of the specified issue, including comments and attachments. |
| create_issueC | Creates a new issue. |
| update_issueC | Updates an issue. |
| update_journalB | Edits a journal (comment) on an issue. Requires Redmine 5.0+. |
| list_statusesB | Returns a list of available issue statuses. |
| list_trackersB | Returns a list of available trackers. |
| list_prioritiesA | Returns a list of available issue priorities. Used for priority_id in create_issue / update_issue. |
| search_issues_fullA | Full-text search for issues by keyword. Returns results with description and all comments. Searches across subject, description, and all comments. |
| list_issues_with_journalsB | Returns a list of issues with all comments. Useful for reviewing progress per assignee. |
| list_usersA | Returns a list of Redmine users. Useful for looking up assignee IDs by name. Note: May require Redmine administrator privileges. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 13 tools
Most tools have distinct purposes, but list_issues and list_issues_with_journals have significant overlap in functionality and parameters, which could cause confusion. The other tools are clearly differentiated by their target resources and actions.
All tools follow a consistent verb_noun naming pattern with snake_case throughout. The naming is predictable and readable, with clear action-resource pairs like create_issue, list_projects, and update_journal.
With 13 tools, this server is well-scoped for Redmine issue and project management. The count is appropriate, covering core operations without being overwhelming, and each tool serves a clear purpose in the domain.
The toolset provides strong coverage for issue and project management, including CRUD operations for issues, listing resources, and search. A minor gap is the lack of project creation/deletion tools, but agents can still perform core workflows effectively.