server_info
Retrieve server information and status from Redmine project management systems to monitor performance and availability.
Instructions
取得服務器資訊和狀態
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/redmine_mcp/server.py:22-29 (handler)The server_info tool handler: a FastMCP tool that returns formatted server information including Redmine domain, debug mode, and API timeout from the config. Registered via @mcp.tool() decorator.@mcp.tool() def server_info() -> str: """取得服務器資訊和狀態""" config = get_config() return f"""Redmine MCP 服務器已啟動 - Redmine 網域: {config.redmine_domain} - 除錯模式: {config.debug_mode} - API 逾時: {config.redmine_timeout}秒"""