Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| REDMINE_URL | Yes | URL of your Redmine instance (e.g., https://redmine.example.com) | |
| REDMINE_API_KEY | Yes | API key from your account settings | |
| REDMINE_PASSWORD | Yes | Password for Basic Authentication | |
| REDMINE_USERNAME | Yes | Username for Basic Authentication |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_issues | Get a list of Redmine issues/tickets with optional filters. Returns paginated results with issue details including status, priority, assignee, and more. |
| get_issue | Get detailed information about a specific Redmine issue/ticket by ID. Includes journals (history), attachments, and relations. |
| get_projects | Get a list of all Redmine projects. Returns paginated results with project details. |
| get_project | Get detailed information about a specific Redmine project by ID. |
| get_project_members | Get a list of project members in a specific Redmine project. Returns paginated results with member details, user info, and their roles in the project. |
| get_project_versions | Get a list of versions for a specific project. |
| search_issues | Search for Redmine issues/tickets by keyword in the subject field. Returns paginated results. |
| get_time_entries | Get time entries logged in Redmine. Can be filtered by project, user, and date range. |
| create_issue | Create a new issue/ticket in Redmine. Returns the created issue with its ID and details. |
| update_issue | Update an existing Redmine issue/ticket. Only provided fields will be updated. |
| add_comment | Add a comment/note to an existing Redmine issue. This is a simple way to add comments without updating other issue fields. |
| delete_issue | Delete a Redmine issue/ticket by ID. |
| log_time | Log time stats for an issue or project. |
| get_time_entry_activities | Get list of time entry activities (e.g. Design, Development). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |