Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server that controls MultiViewer, an app for watching motorsports like Formula 1, World Endurance Championship, IndyCar and others.

README.md

************ mvf1 ************

A Python package, command line interface and MCP server to control video players for MultiViewer_, the best way to watch Formula 1.

.. image:: https://dl.circleci.com/status-badge/img/gh/RobSpectre/mvf1/tree/main.svg?style=svg :target: https://dl.circleci.com/status-badge/redirect/gh/RobSpectre/mvf1/tree/main

.. image:: https://codecov.io/gh/RobSpectre/mvf1/branch/main/graph/badge.svg?token=L5N96KXN2V :target: https://codecov.io/gh/RobSpectre/mvf1

.. image:: https://readthedocs.org/projects/mvf1/badge/?version=latest :target: https://mvf1.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

Table of Contents =================

.. contents:: :local: :depth: 1 :backlinks: none

Features ===============

  • Command line interface for controlling MultiViewer_. Useful for

integrations with control interfaces like StreamDeck_

  • Pythonic interface for controlling MultiViewer_. No GraphQL needed!
  • MCP server for controlling MultiViewer_ - perfect for controlling the

broadcast for with AI agents.

  • Type hints_
  • Full documentation_
  • Test coverage_
  • black_ Praise the Dark Lord

Installation ===============

The latest version can be installed via pip_.

.. code-block:: bash

$ pip install mvf1

Quickstart ================

Command Line ----------------

.. code-block:: bash

$ mvf1-cli --help

Model Context Protocol (MCP) Server ------------------------------------

.. code-block:: bash

$ mvf1-cli mcp

To use in an AI agent, use your framework's affordance for a stdio MCP server.

Here is an example with PydanticAI.

.. code-block:: python

from pydantic_ai import Agent from pydantic_ai.mcp import MCPServerStdio

server = MCPServerStdio( 'mvf1-cli', args=[ 'mcp' ] ) agent = Agent('openai:gpt-4o', mcp_servers=[server])

Library ----------------

Displaying all players

.. code-block:: python

>> from mvf1 import MultiViewerForF1 >> remote = MultiViewerForF1() >> remote.players

[6: INTERNATIONAL, 7: PER]

Pause all players

.. code-block:: python

>> from mvf1 import MultiViewerForF1 >> remote = MultiViewerForF1() >> for player in remote.players: >> player.mute()

{'data': {'playerSetMuted': True}} {'data': {'playerSetMuted': True}}

Retrieve specific player

.. code-block:: python

>> from mvf1 import MultiViewerForF1 >> remote = MultiViewerForF1() >> player = remote.player(6) >> player.state

{'ts': 1677168293.21, 'paused': False, 'muted': True, 'volume': 100, 'live': False, 'currentTime': 10.002025, 'interpolatedCurrentTime': 363.656025}

Switch stream of player to data channel

.. code-block:: python

>> from mvf1 import MultiViewerForF1 >> remote = MultiViewerForF1() >> player = remote.player(6) >> player.switch_stream('DATA')

{'data': {'playerCreate': '12'}}

Synchronize all players to specific player

.. code-block:: python

>> from mvf1 import MultiViewerForF1 >> remote = MultiViewerForF1() >> player = remote.player(6) >> player.sync()

{'data': {'playerSync': True}}

Synchornize all players to player streaming broadcast commentary

.. code-block:: python

>> from mvf1 import MultiViewerForF1 >> remote = MultiViewerForF1() >> remote.player_sync_to_commentary()

{'data': {'playerSync': True}}

Development ================

Hacking ---------------

To hack on the project, clone the GitHub repo_:

.. code-block:: bash

$ git clone https://github.com/RobSpectre/mvf1

Then install in a virtualenv_.

.. code-block:: bash

$ pip install -e ./

Test ---------------

The project uses tox_ for tests. Simply run from project root

.. code-block:: bash

$ tox

Meta ================

  • Written by Rob Spectre_.
  • Released under MIT License_.
  • Software is as is - no warranty expressed or implied, diggity.
  • This package is not developed or maintained by MultiViewer_ or

Formula 1 TV_.

  • Shout out to the excellent MultiViewer_ team! This app absolutely

changed how I enjoy Formula 1.

  • 🏎️ Go Weeyums! 🏎️

.. _MultiViewer: https://multiviewer.app/ .. _pip: https://multiviewer.app/ .. _GitHub Repo: https://github.com/RobSpectre/mvf1 .. _virtualenv: https://multiviewer.app/ .. _Rob Spectre: https://brooklynhacker.com .. _MIT License: http://opensource.org/licenses/MIT .. _tox: https://tox.wiki/en/latest/ .. _black: https://black.readthedocs.io/en/stable/ .. _StreamDeck: https://www.elgato.com/en/welcome-to-stream-deck .. _type hints: https://docs.python.org/3/library/typing.html .. _Full documentation: https://mvf1.readthedocs.io/en/latest/ .. _Test coverage: https://app.codecov.io/gh/RobSpectre/mvf1 .. _Formula 1 TV: https://f1tv.formula1.com/

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.