{
  "info": {
    "name": "Worksnaps — mcp.ai",
    "description": "REST API for the Worksnaps 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/worksnaps",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "worksnaps_create_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project"
          ]
        },
        "description": "Creates a new project in Worksnaps for tracking time and tasks. Use this tool when you need to set up a new project for time tracking. Projects serve as containers for tasks and time entries. Each pro",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_create_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task"
          ]
        },
        "description": "Tool to create a new task in a specified project. Use after confirming project ID exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"user_id\": 0,\n  \"due_date\": \"\",\n  \"project_id\": 0,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_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 task from a Worksnaps project. This action is destructive and cannot be undone. Use GET_TASKS first to find the task_id, and GET_PROJECTS to find the project_id. Returns success=",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": 0,\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_get_project_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "details"
          ]
        },
        "description": "Tool to retrieve details of a specific project. Use when you have a project_id and need its details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_get_project_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "report"
          ]
        },
        "description": "Retrieves time entries for a specific project using the Worksnaps Time Entries API. Returns individual time tracking records showing when users worked on the project. Use this to get detailed time tra",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_ids\": \"\",\n  \"user_ids\": \"\",\n  \"project_id\": 0,\n  \"to_timestamp\": 0,\n  \"from_timestamp\": 0,\n  \"time_entry_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_get_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "projects"
          ]
        },
        "description": "Tool to retrieve a paginated list of projects. Use after authenticating to list accessible projects.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_get_task_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/task/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "task",
            "details"
          ]
        },
        "description": "Tool to retrieve details of a specific task within a project. Use after confirming project_id and task_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": 0,\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_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 tasks for a specific project. Use when you have a project ID and need its tasks. Example: 'Get tasks for project 42'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"status\": \"\",\n  \"user_id\": 0,\n  \"per_page\": 0,\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_get_user_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "account"
          ]
        },
        "description": "Tool to retrieve information about a specific user account. Use after confirming the user_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_get_user_assignments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/assignments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "assignments"
          ]
        },
        "description": "Tool to retrieve a list of all user assignments for a specific project. Returns details about users assigned to the project including their roles, permissions, and contact information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_get_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "users"
          ]
        },
        "description": "Retrieves a list of all users in the Worksnaps account. Returns user details including id, login, name, email, time zone, and active status. Use this to get user IDs for other user-related operations.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_put_update_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/put/update/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "put",
            "update",
            "project"
          ]
        },
        "description": "Tool to update an existing project. Use when you have project_id and fields to modify.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"status\": \"\",\n  \"end_date\": \"\",\n  \"client_id\": 0,\n  \"project_id\": 0,\n  \"start_date\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_put_update_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/put/update/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "put",
            "update",
            "task"
          ]
        },
        "description": "Tool to update details of an existing task. Use when you have project_id, task_id, and fields to update.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"status\": \"\",\n  \"task_id\": 0,\n  \"due_date\": \"\",\n  \"project_id\": 0,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "worksnaps_put_update_user_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/put/update/user/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "put",
            "update",
            "user",
            "account"
          ]
        },
        "description": "Tool to update information for a specific user account. Use when modifying user details after confirming the user exists. Note: This can only be done by the user himself or by a trusted partner using ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"user_id\": 0,\n  \"password\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"timezone_id\": 0,\n  \"password_confirmation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}