Back to tools

get_repo_details

Get detailed info about a specific repo including README, languages, contributors.

Schema and Policy
{
  "name": "get_repo_details",
  "description": "Get detailed info about a specific repo including README, languages, contributors.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "owner": {
        "type": "string",
        "description": "Repo owner"
      },
      "repo": {
        "type": "string",
        "description": "Repo name"
      },
      "include_readme": {
        "type": "boolean"
      },
      "include_contributors": {
        "type": "boolean"
      }
    },
    "required": [
      "owner",
      "repo"
    ]
  },
  "category": "GitHub",
  "authRequired": false,
  "mutability": "read",
  "status": "active"
}