Skip to main content
Glama

list_trackers

Retrieve available trackers to categorize and organize issues within the Redmine project management system.

Instructions

Returns a list of available trackers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The actual implementation of the list_trackers method which queries the Redmine API via the redminelib client.
    def list_trackers(self) -> List[Dict[str, Any]]:
        try:
            return [
                {"id": t.id, "name": t.name}
                for t in self._redmine.tracker.all()
            ]
        except Exception as e:
            raise RedmineError(f"list_trackers failed: {e}") from e
  • MCP tool registration and wrapper for list_trackers, which invokes the RedmineClient implementation.
    @mcp.tool()
    def list_trackers() -> List[Dict[str, Any]]:
        """Returns a list of available trackers."""
        logger.info("tool=list_trackers")
        try:
            return _client().list_trackers()
        except RedmineError as e:
            logger.error(f"list_trackers error: {e}")
            raise

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/daiji-sshr/redmine-mcp-stateless'

If you have feedback or need assistance with the MCP directory API, please join our Discord server