Skip to main content
ClaudeWave

MCP server for Philips Android TV: power, volume, Ambilight, apps and YouTube via JointSpace API and ADB, local-first

MCP ServersRegistry oficial0 estrellas0 forksPythonMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/24/2026
Install in Claude Code / Claude Desktop
Method: UVX (Python) · pylips-mcp
Claude Code CLI
claude mcp add pylips-mcp -- uvx pylips-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "pylips-mcp": {
      "command": "uvx",
      "args": ["pylips-mcp"],
      "env": {
        "TV_HOST": "<tv_host>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
TV_HOST
Casos de uso

Resumen de MCP Servers

# pylips-mcp
<!-- mcp-name: io.github.amineutron/pylips-mcp -->

[![tests](https://github.com/amineutron/pylips-mcp/actions/workflows/tests.yml/badge.svg)](https://github.com/amineutron/pylips-mcp/actions/workflows/tests.yml) [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) [![Python 3.10+](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/downloads/)

MCP server for controlling Philips Android TV via the JointSpace API and ADB.

Exposes 14 tools covering power, volume, ambilight, app launching, and YouTube playback.
Handles the TP Vision SHA1 certificate chain transparently.

## Demo

![MCP client: the 16 tools, then get_state on the real TV](docs/assets/demo.gif)

Recorded against the real TV with [`docs/demo/record.sh`](docs/demo/record.sh): a minimal MCP client ([`docs/demo/mcp_demo.py`](docs/demo/mcp_demo.py)) starts the server over stdio with `TV_HOST`/`TV_USER`/`TV_PASS` in the environment, lists the tools and calls `get_state` (read-only). Credentials never appear on screen.

## Tools

<!-- tools:start -->
| Outil | Rôle |
|---|---|
| `power_on` | Allume la TV Philips |
| `power_off` | Eteint la TV Philips (standby) |
| `screen_off` | Eteint l'ecran de la TV tout en gardant le son actif (mode musique). Note: fonctionne principalement en source HDMI/TV, limite en mode Android. |
| `screen_on` | Rallume l'ecran de la TV apres un screen_off |
| `volume_up` | Augmente le volume de la TV (default +5) |
| `volume_down` | Baisse le volume de la TV (default -5) |
| `volume_set` | Regle le volume a un niveau specifique |
| `mute` | Coupe ou remet le son de la TV |
| `ambilight_on` | Active l'Ambilight de la TV |
| `ambilight_off` | Desactive l'Ambilight de la TV |
| `ambilight_mode` | Change le mode Ambilight |
| `list_apps` | Liste les applications disponibles sur la TV |
| `launch_app` | Lance une application sur la TV |
| `youtube_video` | Lance YouTube sur une video specifique (URL youtube ou ID de video) |
| `get_state` | Retourne l'etat actuel de la TV (allumee/standby) |
| `send_key` | Envoie une touche de telecommande |
<!-- tools:end -->

### YouTube ID extraction

`extract_video_id` is deliberately duplicated in [catt-mcp](https://github.com/amineutron/catt-mcp) (`cast_youtube`, Chromecast with start position and dual-screen sync). Both servers stay installable on their own; each one tests its copy with the same table of cases (`tests/test_youtube_id.py`). Decision recorded on 2026-09-20.

## Requirements

- Python 3.10+
- [pylips](https://github.com/eslavnov/pylips) installed and accessible
- Philips Android TV with JointSpace API enabled (2016+ models)
- ADB enabled on the TV (for YouTube deep linking)
- `wakeonlan` Python package (optional, for Wake-on-LAN)

## Installation en une ligne

```bash
uvx pylips-mcp                 # depuis PyPI ; avant publication : uvx --from git+https://github.com/amineutron/pylips-mcp pylips-mcp
```

Configuration Claude Desktop / Claude Code (`mcpServers`) :

```json
{ "pylips": { "command": "uvx", "args": ["pylips-mcp"], "env": { "TV_HOST": "192.0.2.10", "TV_USER": "...", "TV_PASS": "..." } } }
```

## Setup

### 1. Pair with your TV

```bash
pip install pylips
python -m pylips --host 192.168.0.XX --init
```

This generates credentials saved in `~/.config/pylips/pylips.conf`.

### 2. Install dependencies

```bash
pip install mcp requests wakeonlan
```

### 3. Configure

Copy `config.example.yaml` to `config.yaml` and fill in your TV credentials:

```yaml
tv:
  host: "192.168.0.XX"
  user: "your_user"
  pass: "your_password"

pylips_path: "/path/to/pylips"  # or set PYLIPS_PATH env var
```

### 4. Run

```bash
python server.py
```

Or set via environment variables:

```bash
TV_HOST=192.168.0.XX TV_USER=xxx TV_PASS=xxx python server.py
```

## Claude Desktop Configuration

```json
{
  "mcpServers": {
    "philips-tv": {
      "command": "python3",
      "args": ["/path/to/pylips-mcp/server.py"],
      "env": {
        "TV_HOST": "192.168.0.XX",
        "TV_USER": "your_user",
        "TV_PASS": "your_password",
        "PYLIPS_PATH": "/path/to/pylips"
      }
    }
  }
}
```

## SSL Note

Philips TVs present a TP Vision certificate chain from 2015 signed with SHA1.
Modern OpenSSL and the Fedora/RHEL crypto policy reject SHA1 signatures, so a
classic CA verification is impossible, even with the bundled chain and
`SECLEVEL=0`.

What this server does instead, honestly:

- CA verification is disabled (it cannot succeed);
- the SHA-256 fingerprint of the certificate presented by the TV must match the
  leaf certificate shipped in `tpvision_ca.pem` (checked by urllib3 after the
  TLS handshake, so a man-in-the-middle cannot impersonate the TV without the
  private key). Verified against a real 55OLED705 (JointSpace 6, port 1926);
- `PYLIPS_TLS_FINGERPRINT=<sha256 hex>` pins another TV, `PYLIPS_TLS_PIN=0`
  disables pinning and logs a warning.

`tpvision_ca.pem` is the public TP Vision chain (leaf `restfultv.tpvision.com`,
intermediate `ca.tpvision.com`, root `www.tpvision.com`, valid until 2042),
extracted from a TV with `openssl s_client -showcerts`. It contains no secret.

## License

MIT

## Volume en HDMI ARC

Quand la TV est reliee a un ampli en HDMI ARC, le son ne sort pas de la TV :
agir sur son volume n'a aucun effet audible. Si `denon.host` est renseigne
dans la configuration, `volume_up`, `volume_down`, `volume_set` et `mute`
sont donc rediriges vers l'ampli Denon ; sinon ils passent par l'API de la TV.

Pour piloter l'ampli directement (entrees, extinction, statut), utiliser
[denon-mcp](https://github.com/amineutron/denon-mcp).

## Part of the Lyra ecosystem

| Dépôt | Rôle |
|---|---|
| [lyra](https://github.com/amineutron/lyra) | assistant DevOps vocal, local par défaut (AGPL-3.0) |
| [fedora-agents](https://github.com/amineutron/fedora-agents) | MCP : machines virtuelles KVM et sauvegardes |
| [mcp-tracking](https://github.com/amineutron/mcp-tracking) | MCP + API + tableau de bord des tâches longues |
| [neutroncore](https://github.com/amineutron/neutroncore) | hub PWA du homelab |
| [hue-mcp](https://github.com/amineutron/hue-mcp) | MCP Philips Hue (fork de ThomasRohde/hue-mcp) |
| [pylips-mcp](https://github.com/amineutron/pylips-mcp) | MCP TV Philips |
| [denon-mcp](https://github.com/amineutron/denon-mcp) | MCP ampli Denon |
| [catt-mcp](https://github.com/amineutron/catt-mcp) | MCP Chromecast et DLNA |
adbandroid-tvhome-automationjointspacelocal-firstmcpmcp-serverphilips-tvpythonself-hosted

Lo que la gente pregunta sobre pylips-mcp

¿Qué es amineutron/pylips-mcp?

+

amineutron/pylips-mcp es mcp servers para el ecosistema de Claude AI. MCP server for Philips Android TV: power, volume, Ambilight, apps and YouTube via JointSpace API and ADB, local-first Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-24.

¿Cómo se instala pylips-mcp?

+

Puedes instalar pylips-mcp clonando el repositorio (https://github.com/amineutron/pylips-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar amineutron/pylips-mcp?

+

Nuestro agente de seguridad ha analizado amineutron/pylips-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene amineutron/pylips-mcp?

+

amineutron/pylips-mcp es mantenido por amineutron. La última actividad registrada en GitHub es del 2026-09-24, con 3 issues abiertos.

¿Hay alternativas a pylips-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega pylips-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: amineutron/pylips-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/amineutron-pylips-mcp)](https://claudewave.com/repo/amineutron-pylips-mcp)
<a href="https://claudewave.com/repo/amineutron-pylips-mcp"><img src="https://claudewave.com/api/badge/amineutron-pylips-mcp" alt="Featured on ClaudeWave: amineutron/pylips-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a pylips-mcp