{
  "name": "familyguy.co.uk tools",
  "description": "Deterministic lookups over the unofficial Family Guy episode database. Every answer comes from the same data the pages render; no model generates the result.",
  "site": "https://familyguy.co.uk",
  "dataset": "https://familyguy.co.uk/api/dataset.json",
  "disclaimer": "Unofficial fan resource. Not affiliated with, endorsed by, or sponsored by FOX, Disney, or Fuzzy Door Productions.",
  "tools": [
    {
      "name": "search_episodes",
      "title": "Search episodes",
      "description": "Find Family Guy episodes by words in the title, by season, or by the year they first aired. Returns episode code, title, air date, writers, directors and the page URL. Use get_episode for one episode in full.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Words to look for in the episode title."
          },
          "season": {
            "type": "integer",
            "minimum": 1,
            "description": "Restrict to one season."
          },
          "year": {
            "type": "integer",
            "minimum": 1998,
            "description": "Restrict to episodes first broadcast in this calendar year."
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 10
          }
        },
        "additionalProperties": false
      },
      "example": {
        "name": "search_episodes",
        "arguments": {
          "query": "road to",
          "limit": 5
        }
      }
    },
    {
      "name": "get_episode",
      "title": "Get one episode",
      "description": "Return everything this site records for one episode: the story summary, air date, writers, directors, US viewing figure and identifiers. Accepts an episode code such as S03E12, a season and episode number, or an exact title.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Episode code, for example S03E12."
          },
          "season": {
            "type": "integer",
            "minimum": 1
          },
          "episode": {
            "type": "integer",
            "minimum": 1,
            "description": "Episode number within the season."
          },
          "title": {
            "type": "string",
            "description": "Exact episode title."
          }
        },
        "additionalProperties": false
      },
      "example": {
        "name": "get_episode",
        "arguments": {
          "code": "S03E12"
        }
      }
    },
    {
      "name": "which_episode",
      "title": "Which episode was that",
      "description": "Find which episode something happens in. Searches the story summaries this site has written for every episode, not the titles. Give a few words describing the moment, such as a character, a place or an event.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "moment": {
            "type": "string",
            "description": "A few words describing what happens."
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 5
          }
        },
        "required": [
          "moment"
        ],
        "additionalProperties": false
      },
      "example": {
        "name": "which_episode",
        "arguments": {
          "moment": "witness protection Deep South"
        }
      }
    },
    {
      "name": "get_character",
      "title": "Get a character",
      "description": "Return what this site records for a Family Guy character: the profile written from cited sources, the household, the role, and the English voice actors.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Character name, for example Stewie Griffin."
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": false
      },
      "example": {
        "name": "get_character",
        "arguments": {
          "name": "Joe Swanson"
        }
      }
    },
    {
      "name": "get_season",
      "title": "Get a season",
      "description": "Return one season of Family Guy: how many episodes it has, when it started and finished, and the episode list.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "season": {
            "type": "integer",
            "minimum": 1,
            "description": "Season number."
          },
          "includeEpisodes": {
            "type": "boolean",
            "default": true
          }
        },
        "required": [
          "season"
        ],
        "additionalProperties": false
      },
      "example": {
        "name": "get_season",
        "arguments": {
          "season": 3
        }
      }
    },
    {
      "name": "get_person",
      "title": "Get a writer, director or voice actor",
      "description": "Return the credits this site records for one person: which roles they held and how many episodes they are credited on.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Person name, for example Seth MacFarlane."
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": false
      },
      "example": {
        "name": "get_person",
        "arguments": {
          "name": "Dan Povenmire"
        }
      }
    },
    {
      "name": "get_fact",
      "title": "Look up a fact about the show",
      "description": "Return one entry from the facts section: what a term means in Family Guy, with the page it is on. Omit the term to list every entry.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "term": {
            "type": "string",
            "description": "The term to look up, for example Quahog."
          }
        },
        "additionalProperties": false
      },
      "example": {
        "name": "get_fact",
        "arguments": {
          "term": "Quahog"
        }
      }
    },
    {
      "name": "site_stats",
      "title": "What this site holds",
      "description": "Return the size and freshness of the database: how many episodes, seasons, characters and people it covers, and when the data was last refreshed.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      },
      "example": {
        "name": "site_stats",
        "arguments": {}
      }
    }
  ]
}