MCP Hub
Back to servers

Rhizm MCP Server

An MCP server that enables LLM clients to manage tasks, timers, and notes in Rhizm through natural language commands. It provides tools for task operations, time tracking, and note management via API integration.

glama
Updated
Apr 18, 2026

@rhizmapp/mcp

MCP (Model Context Protocol) server for Rhizm. Allows LLM clients (Claude Desktop, Claude Code, etc.) to operate tasks, timers, and notes via natural language.

Install

npm install -g @rhizmapp/mcp

Or run directly with npx:

npx @rhizmapp/mcp

Setup

  1. Generate an API key at https://rhizm.app/ → Settings → API Keys
  2. Configure your MCP client (see below)

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "rhizm": {
      "command": "npx",
      "args": ["@rhizmapp/mcp"],
      "env": {
        "RHIZM_API_KEY": "rz_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Claude Code

.claude/settings.json:

{
  "mcpServers": {
    "rhizm": {
      "command": "npx",
      "args": ["@rhizmapp/mcp"],
      "env": {
        "RHIZM_API_KEY": "rz_..."
      }
    }
  }
}

Environment Variables

VariableRequiredDefaultDescription
RHIZM_API_KEYyesYour API key (rz_...)
RHIZM_API_URLnohttps://api.rhizm.appAPI base URL

Tools

ToolRequired permissionDescription
list_tasksreadList tasks (date range / tag filter)
create_taskwriteCreate a task
update_taskwriteUpdate a task
delete_taskdeleteDelete a task
start_timertimerStart timer for a task
stop_timertimerStop timer for a task
get_running_timersreadGet running timers
time_summaryreadAggregated time summary
list_notesreadList notes
get_notereadGet a single note
create_notewriteCreate a note

Documentation

For full API documentation, see docs/api.md.

Reviews

No reviews yet

Sign in to write a review