Skip to main content

DisplayNet Connect for AI Agents

DisplayNet Connect for AI Agents is DisplayNet's MCP server. It is built into DisplayNet and lets you control your system through any AI assistant that supports the Model Context Protocol (MCP), including Claude, Gemini, and ChatGPT. Instead of writing API commands by hand, you describe what you want in plain English: ask for a device list, change a route, check signal health, or pull up a live thumbnail.

Tools

DisplayNet Connect provides 10 tools:

ToolDescriptionExample prompt
displaynet_versionChecks the connection and shows version info"Check the DisplayNet connection"
displaynet_commandRuns any DisplayNet API command"List all devices"
displaynet_helpGets documentation on DisplayNet features"How do I create a video wall?"
displaynet_eventsShows recent system events"What events happened in the last hour?"
displaynet_thumbnailGets a live screenshot from a device"Show me what Camera 1 is displaying"
displaynet_query_networkQueries network information"Show me the network status"
displaynet_query_videoQueries video signal details"What video format is on Display 1?"
displaynet_query_healthChecks device health status"Are all devices healthy?"
displaynet_query_routingShows current signal routing"What's routed where?"
displaynet_query_pathTraces signal paths between devices"Trace the path from Camera 1 to Display 2"

The AI application discovers these names automatically when it connects, so describe the task rather than naming the tool.

Compatible AI applications

DisplayNet Connect has been tested with the following AI applications. All five successfully connected, discovered all 10 tools, and authenticated using custom HTTP headers.

ApplicationTransportCost
Claude CodeStreamable HTTPAnthropic Max or Pro subscription
Claude Desktopstdio via mcp-remoteAnthropic Pro or Max subscription
Gemini CLIStreamable HTTPFree tier available (daily limits)
OpenAI Codex CLIStreamable HTTPPaid OpenAI API key required
Google Antigravity IDEStreamable HTTPFree (Google account)
Transport types

Claude Code, Gemini CLI, Codex CLI, and Antigravity connect directly to DisplayNet Connect over Streamable HTTP. Claude Desktop uses a bridge tool called mcp-remote that translates between stdio and HTTP; the bridge installs automatically via npx. See Connect Your AI Application for configuration details.

Architecture

DisplayNet Connect runs alongside the DisplayNet API on your existing server. It uses the same credentials as DisplayNet Manager, reads from and writes to the same API that DisplayNet Manager uses, and needs no server-side configuration of its own.

AI Application <--> DisplayNet Connect <--> DisplayNet API Engine <--> Devices

DisplayNet Connect listens on port 7050 and accepts JSON-RPC 2.0 (MCP) requests over Streamable HTTP. The DisplayNet API Engine runs on port 6980. Authentication uses custom HTTP headers, X-DisplayNet-Username and X-DisplayNet-Password.

Next steps