Connect an AI assistant

Fun Friday speaks MCP, so the assistant you already use can start a game and tell you the room code — without anyone opening a browser tab first.

1. Create an access token

Go to Account → Security → MCP Access and create a token. Tick Allow starting games if you want your assistant to be able to open rooms; leave it off and the token can only read.

The token is shown once. If you lose it, revoke it and create another.

2. Add the server

Most clients take a URL and a bearer token. In a config file it looks like this:

{
  "mcpServers": {
    "funfriday": {
      "url": "https://jxvmsnskfodykitzarns.supabase.co/functions/v1/mcp",
      "headers": {
        "Authorization": "Bearer ffw_mcp_your_token_here"
      }
    }
  }
}

The server speaks Streamable HTTP over a single endpoint — no local process to install.

3. Ask for a game

“Start a Trivia Blitz for the team and give me the room code” is enough. Share the code or the join link, and press Start once everyone is in.

What your assistant can do

  • List Fun Friday games

    List the team-building games available to play on Fun Friday (funfriday.work), with each game's name, description, ideal group size and whether it needs a paid plan. Use this to answer "what could we play?" or to pick a game_type before calling funfriday_create_session.

  • Start a Fun Friday gameneeds hosting access

    Start a new Fun Friday game session and get back the room code and join link to share with the team. This opens a real room that people can join immediately, and uses one of the team's games for the week — confirm with the user before calling it.

  • Check a Fun Friday session

    Check what is happening in a Fun Friday session right now: whether it is still in the lobby or being played, who has joined, and the current scores. Use this to answer "has everyone joined yet?" or "who is winning?" without opening the browser.

  • List recent Fun Friday games

    List the Fun Friday sessions this team has played recently, most recent first, with the game played, when it happened, how many people took part and who won. Use this for "when did we last do a Fun Friday?" or to summarise the last few weeks.

  • Fun Friday team leaderboard

    Get the all-time Fun Friday leaderboard for the user's team — every player's total score, games played and rank across all sessions. Use this for "who is top of the leaderboard?" or to write up a standings summary.

  • Fun Friday team and plan

    Get the user's Fun Friday team: its name, how many members it has, which plan it is on, and how many of this week's games remain. Use this before hosting to check the team has a game left, or to answer questions about the plan and its limits.

What it deliberately cannot do

Play. There is no way for an assistant to submit an answer, cast a vote, guess or draw, and there is not going to be. The games are the part your team plays; an assistant that played them for you would be taking away the only bit that matters.

A token can be revoked at any time from Account → Security, and it can only ever do what you could do yourself.