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

15 lines (14 loc) 364 B
import { z } from "zod"; declare const ConfigSchema: z.ZodObject<{ redmineUrl: z.ZodString; apiToken: z.ZodString; }, "strip", z.ZodTypeAny, { redmineUrl: string; apiToken: string; }, { redmineUrl: string; apiToken: string; }>; export type Config = z.infer<typeof ConfigSchema>; export declare function validateConfig(): Config; export {};