{
  "info": {
    "name": "Everhour — mcp.ai",
    "description": "REST API for the Everhour 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/everhour",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "everhour_client_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/client/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "client",
            "create"
          ]
        },
        "description": "Creates a new client in Everhour for tracking billable work, invoicing, and project organization. Use this action when: - Setting up a new customer/client account for time tracking - Organizing projec",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"projects\": \"\",\n  \"businessDetails\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_client_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/client/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "client",
            "delete"
          ]
        },
        "description": "Tool to delete a client. Use when you need to permanently remove a client from Everhour after confirming the client ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"client_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_client_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/client/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "client",
            "list"
          ]
        },
        "description": "Retrieves all clients in the Everhour workspace. Use this action to: - Get an overview of all clients and their IDs - Find client IDs for use with other client-related actions (e.g., get client, updat",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_clock_in",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clock/in",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clock",
            "in"
          ]
        },
        "description": "Tool to clock in a user for time tracking. Use when you need to start a user's workday or shift in Everhour.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_clock_out",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clock/out",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clock",
            "out"
          ]
        },
        "description": "Tool to clock out a user for time tracking. Use when you need to end a user's workday or shift in Everhour.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_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 event notifications in Everhour. Use when you need to set up real-time notifications for specific events like task creation, timer starts, or client updates. The targe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"events\": \"\",\n  \"project\": \"\",\n  \"targetUrl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_delete_hook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/hook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "hook"
          ]
        },
        "description": "Tool to delete a webhook. Use when you need to permanently remove a webhook from Everhour after confirming the webhook ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_delete_timecard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/timecard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "timecard"
          ]
        },
        "description": "Tool to delete a timecard for a user on a specific date. Use when you need to permanently remove time entries for a user on a particular date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_discard_timesheet_approval",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/discard/timesheet/approval",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "discard",
            "timesheet",
            "approval"
          ]
        },
        "description": "Tool to discard a pending timesheet approval request. Use when you need to cancel or withdraw a previously submitted approval request for a timesheet.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"timesheet_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_expenses_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/expenses/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "expenses",
            "list"
          ]
        },
        "description": "Lists expense records from your Everhour workspace. Supports filtering by date range, user, project, category, and billable status. Use this to review expenses, generate reports, or find specific expe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"from\": \"\",\n  \"user\": 0,\n  \"limit\": 0,\n  \"offset\": 0,\n  \"project\": \"\",\n  \"billable\": false,\n  \"category\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_get_client",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/client",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "client"
          ]
        },
        "description": "Tool to retrieve a specific client by ID. Use when you need detailed client information after obtaining the client's ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"client_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_get_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project"
          ]
        },
        "description": "Tool to retrieve a specific project. Use after you have the project ID if you need its details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_get_section",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/section",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "section"
          ]
        },
        "description": "Retrieve details of a specific section by its ID. Sections are used to organize tasks within Everhour projects. Use List Sections action first to get available section IDs for a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sectionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_get_timecard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/timecard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "timecard"
          ]
        },
        "description": "Tool to retrieve a specific timecard for a user on a date. Use when you need to get clock-in, clock-out, break time, and work time details for a team member on a particular day.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_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": "Tool to retrieve profile information of the authenticated user. Use after providing API key to fetch current user's profile details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_get_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhook"
          ]
        },
        "description": "Retrieve details of a specific webhook by its ID. Returns the webhook's configuration including target URL, subscribed events, active status, and timestamps. Use this to inspect a webhook's settings o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hook_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_expense_categories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/expense/categories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "expense",
            "categories"
          ]
        },
        "description": "Lists all expense categories available in your Everhour account. Returns category IDs needed to create or filter expenses.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_hooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/hooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "hooks"
          ]
        },
        "description": "Lists all webhooks configured for the Everhour account. Returns details about each webhook including its target URL, subscribed events, active status, and timestamps. Use this to review existing webho",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_invoices",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/invoices",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "invoices"
          ]
        },
        "description": "Retrieves all invoices from your Everhour workspace. Returns a list of invoice objects with details such as invoice number, client, project, amount, currency, status, and dates. Use this action to get",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "List all Everhour projects accessible by the authenticated user. Use this tool to: - Retrieve all projects in the workspace - Search for projects by name using the 'query' parameter - Filter projects ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"status\": \"\",\n  \"platform\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_sections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sections"
          ]
        },
        "description": "Lists all sections within a specific Everhour project. Sections help organize tasks within a project. Returns section details including id, name, position, and status. Use this tool when you need to v",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "List all tags in the Everhour workspace. Returns an array of all tags available in the workspace. Each tag contains: - id: Unique numeric identifier for the tag - name: Display name of the tag (e.g., ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_team_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/team/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "team",
            "members"
          ]
        },
        "description": "Retrieves all team members in the authenticated Everhour workspace. Returns detailed information for each member including their ID, name, email, role (admin/member/owner), status, avatar URLs, cost/b",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "teams"
          ]
        },
        "description": "Retrieves information about the authenticated team/workspace in Everhour. Returns comprehensive team details including: - Team ID and name - Owner information - Working days and hours configuration - ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_timecards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/timecards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "timecards"
          ]
        },
        "description": "Tool to retrieve all team timecards with optional date filtering. Use when you need to get clock-in/out data and work hours for team members.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_user_timecards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/user/timecards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "user",
            "timecards"
          ]
        },
        "description": "Tool to retrieve timecards for a specific user with optional date filtering. Use when you need to get clock-in/out data and work hours for a particular team member.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"from\": \"\",\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_list_user_timesheets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/user/timesheets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "user",
            "timesheets"
          ]
        },
        "description": "Tool to retrieve timesheets for a specific user. Use to get weekly time tracking data including daily time entries, task time, approvals, timecards, and time-off records. First use EVERHOUR_LIST_TEAM_",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_project_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/project/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "project",
            "create"
          ]
        },
        "description": "Tool to create a new project in Everhour. Use after gathering project details to persist a new project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"client\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_project_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/project/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "project",
            "delete"
          ]
        },
        "description": "Tool to delete a project. Use when you need to permanently remove a project from Everhour after confirming the project ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_request_timesheet_approval",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/request/timesheet/approval",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "request",
            "timesheet",
            "approval"
          ]
        },
        "description": "Tool to request approval for a timesheet or approve a week (for admins). Use when you need to submit a timesheet for review or when an admin needs to approve submitted timesheets. Regular users can re",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"comment\": \"\",\n  \"reviewer\": 0,\n  \"timesheetId\": 0,\n  \"sendNotification\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_section_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/section/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "section",
            "create"
          ]
        },
        "description": "Tool to create a new section in a project. Use when you need to organize tasks under an existing project after confirming the project ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_section_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/section/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "section",
            "delete"
          ]
        },
        "description": "Tool to delete a section. Use when you need to permanently remove a section from Everhour after confirming the section ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"section_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_task_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/task/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "task",
            "create"
          ]
        },
        "description": "Creates a new task in an Everhour project. Use this to add tasks for time tracking. Requires a valid project ID (get from EVERHOUR_LIST_PROJECTS) and a task name. Example: Create a task named 'Write u",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"parent\": \"\",\n  \"section\": \"\",\n  \"assignee\": 0,\n  \"estimate\": 0,\n  \"projectId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_timer_start",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/timer/start",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "timer",
            "start"
          ]
        },
        "description": "Tool to start a new timer for a task. Use when you need to begin tracking time on a specific task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_update_client",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/client",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "client"
          ]
        },
        "description": "Tool to update an existing client in Everhour. Use this to modify client details such as name, business details, or status (active/archived). First use 'List Clients' to obtain the client ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\",\n  \"status\": \"\",\n  \"businessDetails\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_update_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project"
          ]
        },
        "description": "Updates an existing Everhour project's settings. Use this to modify project name, budget, billing configuration, or notes. Requires a valid project_id (format: 'ev:XXXXXXXXX') - obtain from list_proje",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"note\": \"\",\n  \"budget\": 0,\n  \"billable\": false,\n  \"budgetType\": \"\",\n  \"hourlyRate\": 0,\n  \"project_id\": \"\",\n  \"budgetReset\": \"\",\n  \"billingMethod\": \"\",\n  \"budgetIncludeExpenses\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_update_timecard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/timecard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "timecard"
          ]
        },
        "description": "Tool to update a timecard for a user on a specific date. Use when you need to set or modify clock-in, clock-out times, or break duration for a user's timecard.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"clockIn\": \"\",\n  \"user_id\": 0,\n  \"clockOut\": \"\",\n  \"breakTime\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "everhour_update_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook"
          ]
        },
        "description": "Tool to update an existing webhook configuration in Everhour. Use this to modify the target URL, subscribed events, or project filter of an existing webhook. First use 'List Webhooks' to obtain the we",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"events\": \"\",\n  \"hook_id\": 0,\n  \"project\": \"\",\n  \"targetUrl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}