{
  "info": {
    "name": "Habitica — mcp.ai",
    "description": "REST API for the Habitica MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/habitica",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "habitica_add_challenge_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/challenge/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "challenge",
            "task"
          ]
        },
        "description": "Tool to add a new task to a specified challenge. Use when you need to programmatically create a challenge task after the challenge is set up and you have its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"tags\": \"\",\n  \"text\": \"\",\n  \"type\": \"\",\n  \"notes\": \"\",\n  \"everyX\": 0,\n  \"priority\": 0,\n  \"remindAt\": \"\",\n  \"attribute\": \"\",\n  \"frequency\": \"\",\n  \"challengeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_add_push_device",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/push/device",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "push",
            "device"
          ]
        },
        "description": "Tool to register a push notification device for the authenticated user. Use when you need to enable push notifications for mobile devices or UnifiedPush clients.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"regId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_add_tag_to_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/tag/to/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "tag",
            "to",
            "task"
          ]
        },
        "description": "Tool to add a tag to a task. Use when you need to categorize or label a task with an existing tag.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_id\": \"\",\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_clone_challenge",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clone/challenge",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clone",
            "challenge"
          ]
        },
        "description": "Tool to clone an existing challenge. Use when you need to duplicate a challenge to a different group with a new name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"group\": \"\",\n  \"shortName\": \"\",\n  \"challengeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_create_challenge",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/challenge",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "challenge"
          ]
        },
        "description": "Tool to create a new challenge. Use when you need to start a challenge in a specific group with title, summary, and optional tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"group\": \"\",\n  \"prize\": 0,\n  \"tasks\": \"\",\n  \"leader\": \"\",\n  \"summary\": \"\",\n  \"official\": false,\n  \"shortName\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_create_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "group"
          ]
        },
        "description": "Create a new Habitica party for collaborative gameplay. Use this tool to create a party where users can: - Participate in quests together - Chat with party members - Share achievements and progress **",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"privacy\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_create_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "tag"
          ]
        },
        "description": "Tool to create a new tag. Use after determining the desired tag name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_create_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task"
          ]
        },
        "description": "Create a new task in Habitica. Supports four task types: - 'habit': Recurring positive/negative actions (use up/down to enable +/- buttons) - 'daily': Scheduled tasks that repeat on a schedule (config",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"up\": false,\n  \"date\": \"\",\n  \"down\": false,\n  \"tags\": \"\",\n  \"text\": \"\",\n  \"type\": \"\",\n  \"alias\": \"\",\n  \"notes\": \"\",\n  \"value\": 0,\n  \"everyX\": 0,\n  \"repeat\": {},\n  \"priority\": 0,\n  \"attribute\": \"\",\n  \"checklist\": \"\",\n  \"frequency\": \"\",\n  \"reminders\": \"\",\n  \"startDate\": \"\",\n  \"daysOfMonth\": \"\",\n  \"weeksOfMonth\": \"\",\n  \"collapseChecklist\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Tool to create a new webhook for taskActivity events. Use when you need real-time notifications of task creation, updates, deletion, or scoring.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"type\": \"\",\n  \"label\": \"\",\n  \"enabled\": false,\n  \"options\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_delete_challenge",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/challenge",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "challenge"
          ]
        },
        "description": "Permanently delete a Habitica challenge. Only the challenge leader (creator) or an admin can delete a challenge. This action is irreversible - once deleted, the challenge and all associated tasks are ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"challengeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_delete_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "group"
          ]
        },
        "description": "Leave or delete a Habitica group (party or guild). This tool allows you to: 1. Leave a party: Pass 'party' as groupId or the party's UUID to leave your current party. 2. Leave a guild: Pass the guild'",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"groupId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_delete_group_chat_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/group/chat/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "group",
            "chat",
            "message"
          ]
        },
        "description": "Tool to delete a chat message from a Habitica group (party, guild, or Tavern). Use when you need to remove a specific chat message. Note that only the message author or group moderators can delete mes",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"chatId\": \"\",\n  \"groupId\": \"\",\n  \"previousMsg\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_delete_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tag"
          ]
        },
        "description": "Tool to delete a tag for the authenticated user. Use when you need to remove an obsolete tag after confirming it’s no longer applied to any tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tagId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_delete_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "task"
          ]
        },
        "description": "Permanently deletes a user's task (habit, daily, todo, or reward) by its ID. The task cannot be recovered after deletion. Use get_tasks to list tasks and their IDs first.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"taskId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_delete_task_checklist_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/task/checklist/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "task",
            "checklist",
            "item"
          ]
        },
        "description": "Tool to delete a checklist item from a task. Use when you need to remove a specific checklist item from a todo or daily task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"itemId\": \"\",\n  \"taskId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_delete_user_message_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user/message/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user",
            "message",
            "by",
            "id"
          ]
        },
        "description": "Tool to delete a message from the authenticated user's inbox by its ID. Use when you need to remove a specific message from the user's Habitica inbox.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_delete_user_push_device",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user/push/device",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user",
            "push",
            "device"
          ]
        },
        "description": "Tool to remove a push device registration from the authenticated user's account. Use when you need to unregister a device that should no longer receive push notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"regId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_equip_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/equip/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "equip",
            "item"
          ]
        },
        "description": "Tool to equip or unequip gear, pets, mounts, or costume items in Habitica. Use when you need to change the user's equipped items. Equipping an already-equipped item will unequip it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_export_challenge_csv",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/export/challenge/csv",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "export",
            "challenge",
            "csv"
          ]
        },
        "description": "Tool to export a Habitica challenge to CSV format. Use when you need to download challenge data as a CSV file. The CSV contains all challenge tasks and participant information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"challengeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_challenge",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/challenge",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "challenge"
          ]
        },
        "description": "Tool to retrieve details of a specific challenge. Use when you have the challenge ID and need its full data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"challengeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_challenge_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/challenge/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "challenge",
            "task"
          ]
        },
        "description": "Retrieve a task by its unique ID. Works for any Habitica task type (habit, daily, todo, reward) whether it belongs to a challenge or is a personal user task. Returns full task details including type-s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_challenge_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/challenge/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "challenge",
            "tasks"
          ]
        },
        "description": "Tool to get all tasks for a specified challenge. Use when you have a challenge ID and need to list its defined tasks, including challenge metadata per task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"challengeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_challenges",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/challenges",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "challenges"
          ]
        },
        "description": "Tool to retrieve challenges available in a specific group (guild, party, or tavern).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"groupId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "content"
          ]
        },
        "description": "Retrieves all Habitica game content definitions in a single request. Returns ~9MB of static game data including achievements, quests, gear, pets, mounts, eggs, hatching potions, food, backgrounds, spe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"language\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_content_by_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/content/by/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "content",
            "by",
            "type"
          ]
        },
        "description": "Retrieves Habitica game content data filtered by a specific category type. Use this tool to fetch game definitions like quest details, equipment stats, pet/mount info, backgrounds, spells, or other st",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"language\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_export_history_csv",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/export/history/csv",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "export",
            "history",
            "csv"
          ]
        },
        "description": "Tool to export user tasks history in CSV format. Returns CSV data with task completions and updates over time.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_export_inbox_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/export/inbox/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "export",
            "inbox",
            "html"
          ]
        },
        "description": "Tool to export inbox data in HTML format from Habitica. Use when you need to retrieve the user's private messages and inbox content as an HTML document.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_export_userdata_json",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/export/userdata/json",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "export",
            "userdata",
            "json"
          ]
        },
        "description": "Exports the authenticated user's complete data in JSON format. Use when you need a full backup or comprehensive snapshot of all user data. Returns the raw internal data structure with all fields and n",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "group"
          ]
        },
        "description": "Retrieves detailed information about a Habitica group (guild or party). Use 'party' as groupId to get the user's current party, or provide a specific group UUID obtained from HABITICA_GET_GROUPS.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"groupId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_group_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/group/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "group",
            "members"
          ]
        },
        "description": "Retrieve members of a Habitica group (guild or party). Supports pagination via lastId parameter and optional search filtering. Use 'party' as groupId to get members of the current user's party.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"lastId\": \"\",\n  \"search\": \"\",\n  \"groupId\": \"\",\n  \"includeAllPublicFields\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "groups"
          ]
        },
        "description": "Retrieves Habitica groups based on type. Use 'guilds' to get all guilds the authenticated user belongs to, 'party' to get the user's current party, or 'tavern' to get the global Tavern (the main publi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"type\": \"\",\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_groups_habitrpg",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/groups/habitrpg",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "groups",
            "habitrpg"
          ]
        },
        "description": "Tool to retrieve the Habitica Tavern (habitrpg) group details. The Tavern is the main public group where all Habitica users can chat and participate in community discussions.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_groups_party_chat",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/groups/party/chat",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "groups",
            "party",
            "chat"
          ]
        },
        "description": "Tool to retrieve party chat messages from Habitica. Use when you need to fetch recent chat messages from the authenticated user's party.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_models_model_paths",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/models/model/paths",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "models",
            "model",
            "paths"
          ]
        },
        "description": "Retrieves all available field paths and their data types for a specified Habitica model. Use this to discover the structure and available fields for user, group, challenge, tag, or task models. Helpfu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_news",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/news",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "news"
          ]
        },
        "description": "Tool to retrieve the latest Bailey announcement from Habitica. Use when you need to check current news, events, or updates posted by Bailey.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_party",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/party",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "party"
          ]
        },
        "description": "Retrieves the authenticated user's party details from Habitica. Returns information about the user's current party including: - Party name, description, and member count - Party leader information - C",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_shops_market_gear",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shops/market/gear",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shops",
            "market",
            "gear"
          ]
        },
        "description": "Tool to retrieve the available gear for purchase in the market shop. Use when you need to check what equipment is available for each character class. Returns gear organized by class: healer, wizard, r",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_shops_time_travelers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shops/time/travelers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shops",
            "time",
            "travelers"
          ]
        },
        "description": "Tool to retrieve available items in the Time Travelers shop. Use when you need to see what quests, backgrounds, pets, or mounts can be purchased with hourglasses.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "status"
          ]
        },
        "description": "Tool to check Habitica API server status. Use when you need to verify if the Habitica service is operational before making other API calls.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tags"
          ]
        },
        "description": "Retrieve all tags for the authenticated Habitica user. Tags are labels that can be attached to tasks for organization. Returns both user-created tags and challenge-related tags. Use this to get tag ID",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tasks"
          ]
        },
        "description": "Tool to retrieve all tasks for the authenticated user. Use when you need the user's current tasks list after authenticating.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_user_challenges",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/challenges",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "challenges"
          ]
        },
        "description": "Tool to retrieve challenges the authenticated user participates in. Use when you need a paginated list of user challenges.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"owned\": \"\",\n  \"member\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_user_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "profile"
          ]
        },
        "description": "Retrieves the authenticated user's complete Habitica profile. Returns comprehensive user data including: - Stats: HP, MP, level, experience, gold, and character class - Inventory: gear, pets, mounts, ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhooks"
          ]
        },
        "description": "Retrieves all webhooks configured for the authenticated Habitica user. Returns a list of webhooks including their URLs, types, enabled status, and task activity options. Use this to check existing web",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_get_world_state",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/world/state",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "world",
            "state"
          ]
        },
        "description": "Retrieves the current state of the Habitica game world including active events, world boss status, and seasonal NPC visual themes. Use when checking for active world events, monitoring world boss prog",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_invite_to_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/invite/to/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "invite",
            "to",
            "group"
          ]
        },
        "description": "Tool to invite users to a specific group. Use when you need to send invitations by user UUID, email, or username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uuids\": \"\",\n  \"emails\": \"\",\n  \"groupId\": \"\",\n  \"message\": \"\",\n  \"usernames\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_invite_to_quest",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/invite/to/quest",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "invite",
            "to",
            "quest"
          ]
        },
        "description": "Tool to invite party members to a quest. Use when you want to start a quest with a specific quest key in a group. The user must own the quest scroll to invite others.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_id\": \"\",\n  \"quest_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_join_challenge",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/join/challenge",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "join",
            "challenge"
          ]
        },
        "description": "Tool to join a challenge. Use after confirming the challenge ID to participate in a specific challenge.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"challengeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_leave_challenge",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/leave/challenge",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "leave",
            "challenge"
          ]
        },
        "description": "Tool to leave a Habitica challenge. Use when you need to remove yourself from a specific challenge and decide whether to keep or remove its tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"keep\": \"\",\n  \"challengeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_local_login",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/local/login",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "local",
            "login"
          ]
        },
        "description": "Tool to authenticate a user via local credentials. Use when needing an API token for subsequent Habitica requests.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"password\": \"\",\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_local_register",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/local/register",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "local",
            "register"
          ]
        },
        "description": "Tool to register a new Habitica user via email and password. Use when creating a fresh account before authentication.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"password\": \"\",\n  \"username\": \"\",\n  \"confirmPassword\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_mark_group_chat_seen",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/group/chat/seen",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "group",
            "chat",
            "seen"
          ]
        },
        "description": "Tool to mark all chat messages as read/seen for a specific group. Use when you need to clear unread message notifications in a group chat. Requires a valid group ID ('party' for user's party, 'habitrp",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"groupId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_mark_notification_seen",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/notification/seen",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "notification",
            "seen"
          ]
        },
        "description": "Tool to mark a single notification as seen in Habitica. Use this when you need to mark one specific notification as read after the user has viewed it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"notificationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_mark_notifications_seen",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/mark/notifications/seen",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "mark",
            "notifications",
            "seen"
          ]
        },
        "description": "Marks specific notifications as read/seen in Habitica. Use this after getting notifications to clear unread notification badges. Requires valid notification IDs from the Get Notifications action. Retu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"notificationIds\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_move_pinned_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/pinned/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "pinned",
            "item"
          ]
        },
        "description": "Tool to move a pinned item in the rewards column to a new position. Use when you need to reorder pinned items after sorting them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\",\n  \"position\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_move_task_to_position",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/task/to/position",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "task",
            "to",
            "position"
          ]
        },
        "description": "Move a Habitica task to a new position in the task list. Use this when you need to reorder tasks by moving a specific task to the top (position=0), bottom (position=-1), or any specific position. The ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"taskId\": \"\",\n  \"position\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_post_news_tell_me_later",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/news/tell/me/later",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "news",
            "tell",
            "me",
            "later"
          ]
        },
        "description": "Tool to dismiss the latest Bailey announcement in Habitica, allowing it to be read later. Use this when the user wants to clear the current news notification without reading it. The announcement will ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_post_user_reset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/user/reset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "user",
            "reset"
          ]
        },
        "description": "Resets the authenticated user's account to starting state. This permanently deletes all tasks, resets character to level 1, and clears progress while retaining some items and achievements. Use with ca",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_read_card",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/read/card",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "read",
            "card"
          ]
        },
        "description": "Tool to mark a card as read in Habitica. Use when a user receives a special card (birthday, greeting, nye, thankyou, or valentine) and wants to acknowledge it. Updates user.flags.cardReceived and retu",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cardType\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_remove_from_party",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/from/party",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "from",
            "party"
          ]
        },
        "description": "Removes a member from the authenticated user's party. Requirements: - You must be the party leader to remove members - You cannot remove yourself (use Leave Party instead) - The member must be current",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"message\": \"\",\n  \"memberId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_score_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/score/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "score",
            "task"
          ]
        },
        "description": "Score a Habitica task to mark it as completed or incomplete. Use this tool to: - Mark a todo as complete ('up') or incomplete ('down') - Check off a daily task ('up') or uncheck it ('down') - Record a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"taskId\": \"\",\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_social_auth",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/social/auth",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "social",
            "auth"
          ]
        },
        "description": "Tool to authenticate a user via a social provider. Use after obtaining an OAuth token or code from Facebook, Google, GitHub, or Apple.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"service\": \"\",\n  \"id_token\": \"\",\n  \"access_token\": \"\",\n  \"redirect_uri\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_subscribe_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/subscribe/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "subscribe",
            "webhook"
          ]
        },
        "description": "Tool to enable (subscribe) an existing webhook by ID for the authenticated user. This aligns with Habitica's documented API by updating the webhook resource to ensure it is enabled. Usage: obtain the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhookId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_unlink_all_challenge_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unlink/all/challenge/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unlink",
            "all",
            "challenge",
            "tasks"
          ]
        },
        "description": "Tool to unlink all tasks from a Habitica challenge. Use when you need to disconnect all tasks associated with a challenge and decide whether to keep or remove them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"keep\": \"\",\n  \"challengeId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_update_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "group"
          ]
        },
        "description": "Tool to update a Habitica group (party or guild) by modifying its properties. Use when you need to change the name, description, or summary of an existing group. Only the group leader can update group",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"groupId\": \"\",\n  \"summary\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_update_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "tag"
          ]
        },
        "description": "Tool to update an existing tag's name. Use when you need to rename a tag after identifying its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tagId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_update_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "task"
          ]
        },
        "description": "Update an existing task in Habitica. Use this to modify task properties like title, notes, priority, or other attributes. Only include fields you want to update - all body parameters are optional.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"text\": \"\",\n  \"notes\": \"\",\n  \"taskId\": \"\",\n  \"priority\": 0,\n  \"attribute\": \"\",\n  \"checklist\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_update_task_checklist_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/task/checklist/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "task",
            "checklist",
            "item"
          ]
        },
        "description": "Tool to update a checklist item in a task. Use when you need to modify the text of a specific checklist item in a todo or daily task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"itemId\": \"\",\n  \"taskId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_update_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "user"
          ]
        },
        "description": "Update the authenticated user's profile, preferences, flags, and other settings in Habitica. Use dot notation for nested fields (e.g., profile.name, preferences.language). Note: Some paths are protect",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profile.name\": \"\",\n  \"flags.newStuff\": false,\n  \"preferences.size\": \"\",\n  \"preferences.skin\": \"\",\n  \"preferences.chair\": \"\",\n  \"preferences.shirt\": \"\",\n  \"preferences.sleep\": false,\n  \"preferences.costume\": false,\n  \"preferences.dayStart\": 0,\n  \"preferences.language\": \"\",\n  \"flags.warnedLowHealth\": false,\n  \"preferences.hair.base\": 0,\n  \"preferences.background\": \"\",\n  \"preferences.hair.bangs\": 0,\n  \"preferences.hair.beard\": 0,\n  \"preferences.hair.color\": \"\",\n  \"preferences.hair.flower\": 0,\n  \"preferences.hair.mustache\": 0,\n  \"preferences.allocationMode\": \"\",\n  \"preferences.disableClasses\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "habitica_validate_coupon_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/coupon/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "coupon",
            "code"
          ]
        },
        "description": "Validate a Habitica coupon code to check if it is valid and active. Use this tool to verify coupon codes before attempting to apply them to a user account. Returns information about the coupon's valid",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}