lg-tv-mcp: Skill for Claude Code

.claude/skills/verify/SKILL.md

verify is a skill for Claude Code from OmerLapidot/lg-tv-mcp. It costs 33 tokens per session (478 once invoked), scanned A, original, MIT.

A testing guide for checking an LG TV control server through its real communication interface, using either a simulated TV or a paired physical TV.

In plain words
What is it for?
Use it to start the server as a separate process, connect with an MCP client, call tools such as status checks, and restore the TV's original state.
Why use it?
It helps catch problems that would be missed by testing internal files directly, while also covering TV power state and startup behavior.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is OmerLapidot/lg-tv-mcp's own configuration. It tells Claude Code how to work on lg-tv-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything lg-tv-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to OmerLapidot/lg-tv-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/OmerLapidot/lg-tv-mcp/main/.claude/skills/verify/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/OmerLapidot/lg-tv-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for verify

README.md
[![agentmods](https://agentmods.dev/badge/skills/omerlapidot/lg-tv-mcp/verify/github.svg)](https://agentmods.dev/skills/omerlapidot/lg-tv-mcp/verify)
Your own site
<a href="https://agentmods.dev/skills/omerlapidot/lg-tv-mcp/verify"><img src="https://agentmods.dev/badge/skills/omerlapidot/lg-tv-mcp/verify/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for verify

Your own site · 80×15
<a href="https://agentmods.dev/skills/omerlapidot/lg-tv-mcp/verify"><img src="https://agentmods.dev/badge/skills/omerlapidot/lg-tv-mcp/verify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 478 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00033 $0.00478
Opus 5 $0.00016 $0.00239
Sonnet 5 $0.00007 $0.00096
Haiku 4.5 $0.00003 $0.00048

Measured 10d ago against content hash b754a8e2608f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

verify scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/verify/SKILL.md · 44 lines

What it actually says

Verifying lg-tv-mcp

The surface is the stdio MCP server (server/index.js). Drive it with the MCP client SDK the same way test/helpers.mjs does — never import server modules directly.

Against the real TV

Spawn the server with the default environment; it reads the paired config from ~/Library/Application Support/lg-tv-mcp/config.json (no pairing prompt if clientKey is present):

import { Client } from '<repo>/node_modules/@modelcontextprotocol/sdk/dist/esm/client/index.js';
import { StdioClientTransport } from '<repo>/node_modules/@modelcontextprotocol/sdk/dist/esm/client/stdio.js';
const client = new Client({ name: 'verify-client', version: '0.0.0' });
await client.connect(new StdioClientTransport({
  command: process.execPath, args: ['<repo>/server/index.js'], env: process.env,
}));
await client.callTool({ name: 'get_status', arguments: {} });

Gotchas:

  • Call get_status first; if the TV is off, power_on + ~15s boot, and restore the original power state when done.
  • The subpath imports (@modelcontextprotocol/sdk/client/index.js) only resolve from inside the repo; from a scratchpad script use the full node_modules/.../dist/esm/... paths as above.
  • Tool results: JSON in content[0].text (+ structuredContent), except screenshot, which returns a base64 image block (960x540 JPEG). DRM video planes (Netflix playback) capture as black; UI renders fine.

Against the fake TV

test/fixtures/fake-tv.mjs simulates SSAP over plain ws and serves capture JPEGs over HTTP on the same port. Point the server at it with LG_TV_URL=<tv.url> and LG_TV_DATA_DIR=<tempdir with seeded config> — see withTv() in test/controls.test.js.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 44 lines · 33 tokens per session scan A b754a8e2608f

Subscribe to this mod's changes

verify is a skill published in the GitHub repository OmerLapidot/lg-tv-mcp (1 stars, last pushed 1mo ago), licensed MIT. It adds 33 tokens to every session and 478 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

jetson-video-pipeline

Use when executing and verifying Jetson Video Codec SDK or PyNvVideoCodec encode/decode, transcode, segmentation, container decode, AV1, or acceptance workflows with exact artifact handoffs.

NVIDIA/skills · 45 tokens

atf-testing

Build ServiceNow Automated Test Framework tests and suites — impersonation, form steps, assertions, server-side script steps, test parameters, and execution via snowcreateatftest / snowexecuteatftest.

serac-labs/serac · 45 tokens

gstack-qa

QA lead with real browser testing. Tests your app, finds bugs, fixes them with atomic commits, generates regression tests. Use when the user says "QA", "test this", "find bugs", "exploratory test", "QA this", or "test the app".

Kevin-Liu-01/Agent-Machines · 61 tokens

mixed-signal-cosim

Run mixed-signal co-simulation — digital gate-level Verilog + analog behavioral models together. Use when the user says "mixed-signal sim", "co-simulation", "digital-analog integration test", or at Step A9 of the analog track.

vibeic/vibe-ic · 59 tokens

tabnexus-mcp-evals

Generate, validate, and run isolated Codex-to-TabNexus MCP evaluations with a curated 600-query dataset, executable gold tool labels, safety checks, and best-of-three stability scoring. Use when testing TabNexus MCP tool coverage, Agent behavior, regression quality, destructive-action safety, prompt changes, or a…

KaichenCurry/TabNexus · 75 tokens

blazemeter-private-locations

Comprehensive guide for BlazeMeter Private Locations, including Radar Agent, installation (Docker, Kubernetes, Helm), configuration, management, and troubleshooting. Use when working with Private Locations for (1) Installing agents (Docker, Kubernetes, Helm Chart), (2) Configuring Radar Agent for API Monitoring, (3)…

Blazemeter/bzm-mcp · 103 tokens