CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

CastHub

cast-hub/mcp-server
authSTDIOregistry active
Summary

Connects Claude or any MCP client to the CastHub digital signage platform through 30+ tools covering device management, presentations, schedules, and emergency alerts. You can push content to specific screen groups, trigger text alerts across locations, send remote commands to Amazon Signage Sticks, and manage recurring schedules without touching the web dashboard. Offers both a hosted endpoint that requires zero local installation and a stdio npm package for clients that need it. The governance layer adds preview and rollback capabilities for safety when agents are making live changes to production signage. Useful if you manage TV fleets across retail stores, warehouses, or corporate campuses and want natural language control over what displays where and when.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

CastHub MCP Server

Model Context Protocol server for digital signage. Manage TV fleets, presentations, schedules, and emergency alerts from Claude, Cursor, ChatGPT, or any MCP client.

npm version License: MIT

CastHub MCP demo

What this is

CastHub MCP Server lets AI assistants directly control digital signage networks. Instead of clicking through a dashboard, you tell Claude to update the lobby TV, push an emergency alert to all stores, or schedule next week's promotional content. The server exposes 30+ tools covering devices, presentations, schedules, alerts, and groups across the CastHub platform.

Why this exists

Digital signage management is repetitive, multi-step work that maps cleanly to natural language. Several signage platforms (Fugo, Revel Digital, Screenly) have shipped MCP support over the last year. CastHub MCP differentiates on hosted endpoint architecture (no local install required for the basic path), a governance layer with preview-confirm-rollback for safe agent use, and native Amazon Signage Stick integration.

Two ways to connect

Option A: Hosted endpoint (recommended)

No installation required. Add the CastHub MCP server to your Claude Desktop, Cursor, or other MCP client config:

{
  "mcpServers": {
    "casthub": {
      "url": "https://api.cast-hub.com/mcp",
      "auth": {
        "type": "bearer",
        "token": "YOUR_CASTHUB_API_KEY"
      }
    }
  }
}

Generate your API key at dashboard.cast-hub.com.

Option B: Install the SDK locally

For MCP clients that require a local stdio process:

npm install -g @cast-hub/mcp

Then configure your client:

{
  "mcpServers": {
    "casthub": {
      "command": "casthub-mcp",
      "env": {
        "CASTHUB_API_KEY": "your-api-key-here"
      }
    }
  }
}

The SDK forwards MCP protocol calls to the CastHub hosted endpoint. All tool execution happens server-side; the SDK is a transport shim.

Available Tools (30+)

Devices

Tool nameDescription
get_devicesList all devices grouped by device group
update_deviceUpdate a device's name
delete_deviceDelete a device by ID
change_device_groupMove a device to a different group
issue_device_commandSend a remote command to an Amazon Signage Stick
get_device_commandsList recent remote commands and their status
create_device_command_scheduleCreate a recurring command plan for a device group
get_device_command_schedulesList command plans for a device group
toggle_device_command_scheduleEnable or disable a command plan
delete_device_command_scheduleDelete a command plan

Device groups

Tool nameDescription
create_device_groupCreate a new device group
update_device_groupUpdate a device group's title
delete_device_groupDelete a device group

Presentations

Tool nameDescription
get_presentationsList all presentations
get_presentationGet a specific presentation with all slides
create_presentationCreate a new presentation
create_presentation_with_contentCreate a presentation with slides in one step
update_presentationUpdate presentation properties
delete_presentationDelete a presentation
assign_presentationAssign a presentation to a specific device group
assign_presentation_to_defaultAssign a presentation to the default group
register_slide_image_uploadStep 1 of 3 for uploading an image slide
acknowledge_slide_image_uploadStep 3 of 3 for uploading an image slide
register_slide_video_uploadStep 1 of 3 for uploading a video slide
acknowledge_slide_video_uploadStep 3 of 3 for uploading a video slide

Schedules

Tool nameDescription
get_schedulesList all schedules
get_linear_scheduleGet a Simple Schedule with all time entries
get_weekly_scheduleGet a Weekly Schedule with all time slots
assign_scheduleAssign a schedule to a device group
remove_scheduleRemove the schedule from a device group
delete_scheduleDelete a schedule

Alerts

Tool nameDescription
assign_alert_presentationSet the alert presentation for a specific device group
assign_alert_presentation_to_defaultSet the alert presentation for the default group
remove_alert_presentationRemove the alert presentation from a group
start_all_alertsStart alerts on all device groups
start_group_alertStart an alert on a specific group
start_text_alertStart a text alert on all device groups
start_text_alert_for_groupStart a text alert on a specific group
stop_all_alertsStop alerts on all groups
stop_group_alertStop an alert on a specific group

Account and utility

Tool nameDescription
who_am_iCheck current login status
get_user_infoGet user profile and subscription details
get_dashboardGet a comprehensive dashboard overview
get_current_utc_timeReturns the current UTC timestamp

How CastHub MCP compares

CapabilityCastHub MCPScreenly MCPRevel Digital MCPFugo MCP
MCP server availableYesYesYesYes
Hosted endpoint (no local CLI install)YesNo (CLI-based)YesYes
Governance layer (preview, confirm, rollback)YesNoNoNo
Amazon Signage Stick native supportYesNoPartialNo
Flat-rate pricingYesPer-screenPer-screenPer-screen
Open-source player optionRoadmapYes (Pi via Anthias)NoNo

Example usage

Update content for a specific group of screens

Prompt: "Push the new winter sale presentation to all 12 store screens for next week"

Tools called: get_presentations, assign_presentation, assign_schedule

Trigger an emergency alert

Prompt: "Start a fire drill alert across the warehouse group right now"

Tools called: start_text_alert_for_group

Audit fleet health

Prompt: "Show me all devices that have not checked in for over 24 hours"

Tools called: get_devices (filtered client-side)

More walkthroughs in examples/.

Documentation

  • CastHub MCP overview
  • CastHub Dashboard
  • CastHub pricing

License

MIT. See LICENSE.

Contributing

Issues and pull requests welcome at github.com/Cast-Hub/mcp-server/issues. For commercial questions or partnership inquiries, contact info@cast-hub.com.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

CASTHUB_API_KEY*secret

API key generated at https://dashboard.cast-hub.com

CASTHUB_MCP_URL

Override the hosted endpoint URL. Defaults to https://api.cast-hub.com/mcp.

Registryactive
Package@cast-hub/mcp
TransportSTDIO
AuthRequired
UpdatedMay 6, 2026
View on GitHub