{
  "tool_id": "protein_intake_calculator",
  "slug": "protein-intake-calculator",
  "path": "/protein-intake-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/protein-intake-calculator/?<params>",
  "sample_input": {
    "tool": "protein_intake",
    "weight_kg": 80,
    "activity_level": "active",
    "goal": "bulk"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "weight_kg": {
        "type": "integer"
      },
      "activity_level": {
        "type": "string"
      },
      "goal": {
        "type": "string"
      }
    },
    "required": [
      "tool",
      "weight_kg",
      "activity_level",
      "goal"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "minGrams": {
        "type": "number"
      },
      "maxGrams": {
        "type": "number"
      },
      "targetGrams": {
        "type": "number"
      }
    }
  }
}
