list_projects
Filter and retrieve active or inactive projects by client ID using the Harvest MCP Server, streamlining project management through API integration.
Instructions
List projects with optional filtering.
Args:
    client_id: Filter by client ID
    is_active: Pass true to only return active projects and false to return inactive projects
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| client_id | No | ||
| is_active | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "client_id": {
      "default": null,
      "title": "Client Id",
      "type": "integer"
    },
    "is_active": {
      "default": null,
      "title": "Is Active",
      "type": "boolean"
    }
  },
  "title": "list_projectsArguments",
  "type": "object"
}