Skip to main content
Glama

habitca-mcp

一个小型模型上下文协议 (MCP) 服务器,将 Habitica v3 API 作为 MCP 工具公开,以便支持 MCP 的 AI 助手(Claude Code、Hermes Agent、Cursor 等)可以读取和更新您的 Habitica 任务、习惯、每日任务、奖励、宠物、库存和通知。

这是对 iBreaker 原版 的纯净重写——界面相同,去除了 axios/zod/i18n,使用单文件 Node,仅输出英文。

安装

git clone https://github.com/hxlair/habitca_mcp.git
cd habitca_mcp
npm install

需要 Node 18 或更高版本(使用内置的 fetch)。

认证

您需要您的 Habitica API 凭据:

  1. 打开 https://habitica.com/user/settings/api

  2. 复制您的 User IDAPI Token

在启动服务器的 shell 中导出它们:

export HABITICA_USER_ID=...
export HABITICA_API_TOKEN=...

可选:

export HABITICA_APP_ID=my-mcp-client      # sent as x-client header for Habitica analytics

运行

npm start
# or
./index.js

服务器通过 stdio 使用 MCP 协议通信。连接成功后,它会将 habitca-mcp ready 记录到 stderr。

连接到 MCP 客户端

Claude Code / Hermes Agent / Cursor

添加到客户端的 MCP 配置中:

{
  "mcpServers": {
    "habitca": {
      "command": "node",
      "args": ["/absolute/path/to/habitca_mcp/index.js"],
      "env": {
        "HABITICA_USER_ID": "...",
        "HABITICA_API_TOKEN": "..."
      }
    }
  }
}

对于 Hermes 特别说明:

hermes mcp add habitca \
  --env HABITICA_USER_ID=... \
  --env HABITICA_API_TOKEN=... \
  -- node /absolute/path/to/habitca_mcp/index.js

工具

工具

用途

get_user_profile

获取完整的用户文档

get_stats

获取 HP / MP / XP / 等级 / 金币 / 职业

get_tasks

列出任务(可选择按 habits / dailys / todos / rewards / completedTodos 过滤)

get_task

通过 ID 获取单个任务

create_task

创建习惯/每日任务/待办事项/奖励

update_task

更新任务字段

score_task

对任务进行评分 up(默认)或 down

delete_task

删除任务

get_task_checklist

列出任务上的清单项

add_checklist_item

添加清单项

update_checklist_item

编辑清单项的文本/完成状态

score_checklist_item

切换清单项的完成状态

delete_checklist_item

删除清单项

get_tags / create_tag

标签 CRUD(子集)

get_inventory / get_pets / get_mounts

库存视图

feed_pet / hatch_pet / equip_item

宠物与装备操作

buy_reward / get_shop / buy_item

奖励购买

cast_spell

对自己/任务/队伍成员施放职业技能

get_notifications / read_notification

通知处理

run_cron

手动触发每日 cron

与上游版本的区别

  • 单一依赖 — 仅 @modelcontextprotocol/sdk。移除了 axios、zod 和 i18n 层。

  • 仅英文 输出消息。

  • 发送 x-client 请求头,以便 Habitica 可以将流量归因于 MCP。

  • 更好的错误处理 — 直接显示 Habitica API 的 message 字段,而不是将其吞掉。

  • 结构化的成功消息 — score_task 返回金币/经验/等级的变化量,create_task 返回新 ID 等。

  • 添加了 get_taskrun_cron;进行了微小的模式清理(优先级枚举,completedTodos 过滤器)。

许可证

MIT — 与上游相同。

Install Server
F
license - not found
B
quality
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

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/leon-jarvis1/habitca_mcp'

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