<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Joe Harkins</title>
    <description>The latest articles on DEV Community by Joe Harkins (@vfxprojoe).</description>
    <link>https://dev.to/vfxprojoe</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3891789%2F5728cddc-bf6e-4554-b1f4-93d9d819a281.png</url>
      <title>DEV Community: Joe Harkins</title>
      <link>https://dev.to/vfxprojoe</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vfxprojoe"/>
    <language>en</language>
    <item>
      <title>How I Built an MCP Server for Media &amp; Entertainment Intelligence</title>
      <dc:creator>Joe Harkins</dc:creator>
      <pubDate>Wed, 22 Apr 2026 05:59:00 +0000</pubDate>
      <link>https://dev.to/vfxprojoe/how-i-built-an-mcp-server-for-media-entertainment-intelligence-345d</link>
      <guid>https://dev.to/vfxprojoe/how-i-built-an-mcp-server-for-media-entertainment-intelligence-345d</guid>
      <description>&lt;p&gt;&lt;em&gt;Give your AI agent real-time knowledge about Netflix, Disney, and 30+ media companies.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;If you work in media and entertainment — or invest in it — you know the information landscape is brutal. Earnings calls, streaming data, box office reports, executive moves, regulatory shifts. It's scattered across Variety, Deadline, THR, SEC filings, and a dozen other sources.&lt;/p&gt;

&lt;p&gt;I built Studio Signal to solve this: an AI-powered intelligence platform that gives M&amp;amp;E professionals sourced, citation-backed research on demand. Think of it as having a dedicated analyst who reads every trade publication and can synthesize it in seconds.&lt;/p&gt;

&lt;p&gt;But the really interesting part? I also built an MCP server so you can connect that intelligence directly to Claude, Cursor, or any AI assistant that supports the Model Context Protocol.&lt;/p&gt;

&lt;p&gt;What is MCP?&lt;br&gt;
The Model Context Protocol (MCP) is an open standard created by Anthropic that lets AI assistants connect to external tools and data sources. Instead of copy-pasting information into your AI chat, MCP lets the AI call tools directly — fetching real-time data, running queries, and accessing specialized knowledge bases.&lt;/p&gt;

&lt;p&gt;Think of it like giving your AI agent a phone book of capabilities. Instead of just knowing what was in its training data, it can actively reach out and get live information.&lt;/p&gt;

&lt;p&gt;What the Studio Signal MCP Server Does&lt;br&gt;
The server exposes three tools:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;ask_kai — Research Any M&amp;amp;E Topic
Ask Kai Rivers (our AI research analyst) anything about media and entertainment:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;"Analyze Netflix's competitive position in the streaming wars"&lt;br&gt;
"What's the impact of AI on Hollywood production pipelines?"&lt;br&gt;
"Break down the Warner Bros Discovery restructuring"&lt;br&gt;
Kai returns a full research report with citations from Variety, Deadline, THR, and 30+ industry sources — grounded by Google Search for real-time accuracy.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;get_daily_brief — Today's Executive Intelligence&lt;br&gt;
Every morning at 8 AM PT, Studio Signal generates an AI-curated intelligence report covering the top M&amp;amp;E stories, ranked by market impact. This tool fetches that brief so your AI can reference it in conversation.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;get_deep_dive — In-Depth Analysis&lt;br&gt;
A companion to the daily brief — a longer-form analysis expanding on the day's most significant story with full market context and strategic recommendations.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Setting It Up (2 Minutes)&lt;br&gt;
Step 1: Get an API Key&lt;br&gt;
Go to developer.studiosignal.app and generate your API key from Profile → API Key.&lt;/p&gt;

&lt;p&gt;Step 2: Add to Claude Desktop&lt;br&gt;
Open your Claude config at ~/Library/Application Support/Claude/claude_desktop_config.json and add:&lt;/p&gt;

&lt;p&gt;json&lt;br&gt;
{&lt;br&gt;
  "mcpServers": {&lt;br&gt;
    "studio-signal": {&lt;br&gt;
      "command": "npx",&lt;br&gt;
      "args": ["-y", "@studiosignal/mcp-server"],&lt;br&gt;
      "env": {&lt;br&gt;
        "STUDIO_SIGNAL_API_KEY": "ss_live_your_key_here"&lt;br&gt;
      }&lt;br&gt;
    }&lt;br&gt;
  }&lt;br&gt;
}&lt;br&gt;
Step 3: Restart Claude&lt;br&gt;
That's it. You'll see "studio-signal" in your available tools. Now just ask Claude naturally:&lt;/p&gt;

&lt;p&gt;"Use Studio Signal to analyze the impact of Apple's sports rights strategy on the streaming market"&lt;/p&gt;

&lt;p&gt;Claude will call ask_kai behind the scenes and return a sourced research report inline.&lt;/p&gt;

&lt;p&gt;Why MCP Matters for Domain Intelligence&lt;br&gt;
The general-purpose AI models are incredible, but they have a blind spot: recency and specificity. A model trained months ago doesn't know about yesterday's earnings surprise or last week's executive departure.&lt;/p&gt;

&lt;p&gt;MCP solves this by connecting your AI to live, domain-specific knowledge bases. For M&amp;amp;E, that means:&lt;/p&gt;

&lt;p&gt;Real-time data: Stock prices, box office numbers, and streaming metrics that update continuously&lt;br&gt;
Source verification: Every claim grounded by actual reporting from trade publications&lt;br&gt;
Domain expertise: Analysis frameworks (SWOT, Porter's Five Forces, TAM) tuned for media companies&lt;br&gt;
This is the future of AI assistants — not trying to know everything, but knowing who to ask.&lt;/p&gt;

&lt;p&gt;Beyond the MCP Server: The Full API&lt;br&gt;
If you're building something more custom, Studio Signal also has 11 REST API endpoints:&lt;/p&gt;

&lt;p&gt;Endpoint    What it does&lt;br&gt;
POST /research  Full AI research query&lt;br&gt;
GET /brief  Daily executive brief&lt;br&gt;
GET /deep-dive  Deep dive analysis&lt;br&gt;
GET /stocks Live stock data (30+ tickers)&lt;br&gt;
GET /calendar   Industry events calendar&lt;br&gt;
GET /podcast    Daily audio briefing + transcript&lt;br&gt;
POST /export/pdf    Export to branded PDF&lt;br&gt;
POST /export/excel  Generate financial model&lt;br&gt;
POST /generate/linkedin Generate LinkedIn post&lt;br&gt;
POST /generate/content  Generate infographic/slides&lt;br&gt;
GET /usage  API usage stats&lt;br&gt;
Full OpenAPI spec: github.com/vfxprojoe/studiosignal/mcp-server/openapi.yaml&lt;/p&gt;

&lt;p&gt;Try It&lt;br&gt;
npm: @studiosignal/mcp-server — npmjs.com&lt;br&gt;
Developer Portal: developer.studiosignal.app&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>claude</category>
      <category>agents</category>
      <category>api</category>
    </item>
  </channel>
</rss>
