UNPKG

redmine-mcp-tools

Version:

A comprehensive Model Context Protocol (MCP) server for Redmine integration. Provides 25+ specialized tools for complete Redmine API access including issue management, project administration, time tracking, and user management. Built with TypeScript and d

31 lines (30 loc) 940 B
import { HandlerContext, ToolResponse } from "./types.js"; /** * Creates handlers for time entry operations */ export declare function createTimeEntriesHandlers(context: HandlerContext): { /** * Lists time entries with pagination and filters */ list_time_entries: (args: unknown) => Promise<ToolResponse>; /** * Get a specific time entry */ show_time_entry: (args: unknown) => Promise<ToolResponse>; /** * Create a new time entry for a project */ create_time_entry_for_project: (args: unknown) => Promise<ToolResponse>; /** * Create a new time entry for an issue */ create_time_entry_for_issue: (args: unknown) => Promise<ToolResponse>; /** * Update an existing time entry */ update_time_entry: (args: unknown) => Promise<ToolResponse>; /** * Delete a time entry */ delete_time_entry: (args: unknown) => Promise<ToolResponse>; };