Skip to main content
Glama
paramount-engineering

Roku Dev Studio MCP Server

Get App Icon

get_app_icon
Read-onlyIdempotent

Fetches the 336x210 app icon for a specified channel on a Roku device, returning it as a base64 data URL. Use this to preview channel branding without affecting the device.

Instructions

Fetch the 336x210 app icon for one installed channel on the device, returned as base64 / data URL (ECP /query/icon/). Read-only. Discover valid app ids with ecp_query "/query/apps" (or launch_app's notes); "dev" is the sideloaded Dev App. Use this to preview a channel's branding — for a picture of the current screen use screenshot instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appIdYesChannel id whose icon to fetch (e.g. "837" for YouTube, "dev" for the sideloaded Dev App). Get ids from ecp_query "/query/apps".
deviceNoTarget device — IP (e.g. "192.168.1.154") or serial (e.g. "X00046N6S6F"). Omit to use the focused device.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.0.2
    • addedInput schema / properties / appId / description
      Added value: +"Channel id whose icon to fetch (e.g. \"837\" for YouTube, \"dev\" for the sideloaded Dev App). Get ids from ecp_query \"/query/apps\"."
  2. First observedv1.0.1

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark this read-only and idempotent, and the description reinforces that with 'Read-only.' Beyond annotations, it discloses the underlying ECP endpoint, the exact image dimensions, the base64/data URL return format, and the special 'dev' app id — genuinely useful behavior context for a tool with no output schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three tightly packed sentences with no filler. The core operation and format come first, followed by id discovery, then the explicit sibling distinction. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter read-only tool, the description covers the return format, endpoint, id discovery, default-device behavior (implied by the schema's optional device param), and the key alternative (screenshot). Nothing an agent needs to invoke this correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and both parameters already include examples and guidance ('837' for YouTube, device IP/serial examples). The description adds the 'dev' shortcut and ECP route hint, but the schema already carries the semantic load, so the added value over the schema is modest.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Fetch'), a precise resource ('336x210 app icon for one installed channel'), and the returned format ('base64 / data URL'). It also distinguishes itself from screenshot by naming what it is for (previewing branding) versus capturing the current screen.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly tells the agent when to use this tool (previewing a channel's branding) and when not to (use screenshot for the current screen). It also tells the agent how to discover valid app ids via ecp_query or launch_app's notes, leaving no ambiguity about prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.