remote-control-tv
Supports controlling Amazon Fire TV devices via ADB, enabling app launching, remote control commands, power management, and volume control.
Allows searching and launching HBO content on Android TV, including deep linking and profile selection.
Enables searching and playing content from Jellyfin media server on Android TV.
Allows searching and playing Netflix content on Android TV, with automated deep linking, profile selection, and force-stop handling.
Allows searching and playing Amazon Prime Video content on Android TV via deep linking and profile detection.
Allows searching and playing Amazon Prime Video content on Android TV via deep linking and profile detection.
Allows searching and playing SkyShowtime content on Android TV.
Allows searching and playing SkyShowtime content on Android TV.
Allows searching and playing music from Spotify on Android TV, including precise track search and auto-queue.
Allows searching and playing YouTube videos on Android TV, including YouTube Music and YouTube Kids.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@remote-control-tvPlay Stranger Things"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
remote-control-tv
An MCP server that lets AI agents control Android TVs — search for content across streaming services and play it, manage power and volume, send remote control commands, all via ADB.
Say "play Stranger Things" and it finds it on Netflix, launches the deep link, navigates the profile picker, and starts playback. No manual searching, no menus, no remote.
How it works
You ask your AI agent to play something
The server searches JustWatch to find which streaming services have it and gets the Android TV deep link
It sends ADB commands to your TV: force-stops the app if needed, launches the deep link, detects the profile picker, and selects your profile
Content plays. Results are cached locally so repeat requests are instant.
For music, it searches the Spotify API to find the exact track and artist, then opens Spotify with a targeted search that plays the right song and auto-queues similar music.
Related MCP server: ADB MCP Server
What can it do?
"Play Stranger Things" — finds it on Netflix, launches with deep link, selects your profile
"Play Frozen on Disney+" — opens directly to the movie
"Play Bohemian Rhapsody" — finds the song on Spotify, plays it, queues similar music
"What services have The Boys?" — shows it's on Prime Video, Apple TV, etc.
"Pause" / "Next episode" / "Rewind" — remote control commands
"Turn off the TV" / "Turn on the TV" — power control with Wake-on-LAN
"Volume up" / "Mute" — volume control
"Open YouTube" — launches any installed app
"Play The Boys on the Bob profile" — picks a specific streaming profile
Supported devices
Any device running Android TV or Google TV:
TV brands: Philips, Sony, TCL, Hisense, Sharp, and others with Android TV
Streaming devices: NVIDIA Shield, Xiaomi Mi Box, Chromecast with Google TV
Amazon Fire TV (partial — ADB works, some deep link formats may differ)
Enable ADB on your TV
Before anything else, you need to enable ADB (Android Debug Bridge) on your TV. This is a one-time setup:
Go to Settings > Device Preferences > About
Tap Build number 7 times — you'll see "You are now a developer"
Go back — Developer options now appears under Device Preferences
Enable USB debugging (some TVs call it "Network debugging")
Reboot the TV
When you first connect via ADB, the TV will show "Allow USB debugging?" — accept it and check "Always allow from this computer"
The exact menu path may vary by manufacturer. On some TVs it's Settings > About > Build number. Search "[your TV brand] enable developer options" if the above doesn't match.
Prerequisites
Node.js 18+
ADB installed on your machine:
macOS:
brew install android-platform-toolsUbuntu/Debian:
sudo apt install adbWindows: Download platform-tools
Spotify Developer App (optional — only needed for music search)
Installation
npm install -g remote-control-tvSetup
remote-control-tv setupThe wizard connects to your TV, tests the connection, and saves configuration to ~/.remote-control-tv/config.json.
Add to your AI agent
Add to ~/.claude/settings.json:
{
"mcpServers": {
"tv": {
"command": "remote-control-tv"
}
}
}Or without global install:
{
"mcpServers": {
"tv": {
"command": "npx",
"args": ["-y", "remote-control-tv"]
}
}
}Add to .vscode/mcp.json in your workspace or user settings:
{
"servers": {
"tv": {
"command": "remote-control-tv"
}
}
}The server uses stdio transport. Run remote-control-tv as a subprocess and communicate via JSON-RPC over stdin/stdout.
Tools
Tool | Description | Key parameters |
tv_play | Search for content and play it. Handles deep linking, app force-stops, and profile selection automatically. |
|
tv_search | Search for content without playing. Returns available services and deep links. |
|
tv_power | Power on, off, toggle, or check status. Supports Wake-on-LAN for TVs in deep standby. |
|
tv_volume | Adjust volume up/down, mute/unmute, or set to a level. |
|
tv_key | Send any remote control key press. |
|
tv_app | Launch an app by name. |
|
Supported apps
youtube, netflix, disney, prime, spotify, jellyfin, hbo, skyshowtime, youtube_music, youtube_kids
Custom apps can be added via config.
Supported keys
Category | Keys |
Navigation |
|
Playback |
|
Volume |
|
Power |
|
System |
|
Profile setup
Streaming apps like Netflix, Disney+, and Prime Video show a "Who's watching?" profile picker. Run the profile wizard to configure them:
remote-control-tv profilesThe wizard detects which apps are installed, auto-reads Disney+ profiles directly from the TV, and walks you through Netflix and Prime Video interactively. No manual config editing needed.
Spotify setup (optional)
For music search, create a free Spotify Developer App:
Create an app (redirect URI:
https://localhost, select Web API)Add
clientIdandclientSecretto your config
Without Spotify configured, tv_play with music: true will return an error. All other tools work without it.
Multiple TVs
Add multiple entries to the tvs array in config. Pass the tv parameter in tool calls to select which one. If omitted, uses defaultTv or the first TV in the list.
Known quirks
Netflix ignores deep links when already running. The server force-stops it before each launch.
Netflix sometimes skips the profile picker entirely. The server detects this and avoids sending unnecessary key presses that would interfere with playback.
Spotify TV app only responds to
spotify:search:URIs (notspotify:track:orspotify:artist:). The server works around this by using the Spotify API to identify the exact artist and track name, then constructs a precise search query.Prime Video uses a custom renderer. Profile detection uses
logcatmonitoring instead of UI inspection.Deep standby drops the TV off the network entirely. Configure the
macfield for Wake-on-LAN, or enable "Network standby" in TV settings.
Debugging
Test your server with the MCP Inspector:
npx @modelcontextprotocol/inspector remote-control-tvCheck ADB connectivity:
adb connect <TV_IP>:5555
adb -s <TV_IP>:5555 shell echo okContributing
Contributions welcome. Some areas that could use help:
App-specific deep link testing — verify deep link formats on different TV brands and Android versions
Profile detection — improve detection reliability for more streaming services (HBO Max, SkyShowtime, etc.)
Fire TV support — test and document differences for Amazon Fire TV devices
Additional streaming services — add app registry entries and deep link patterns
License
MIT
Available Tools
6 toolstv_appA
Launch an app on the TV by name. Available: youtube, youtube_music, youtube_kids, netflix, disney, prime, spotify, jellyfin, skyshowtime, hbo. Does not handle deep links or profiles — use tv_play for that.
| Name | Required | Description | Default |
|---|---|---|---|
| app | Yes | App name |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It clearly defines the supported app set and discloses the deep-link/profile limitation. It stops short of stating error behavior when an unsupported app name is passed, but for such a simple launcher this is largely sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler: the action and allowed values come first, and the limitation with routing to the sibling comes second. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter TV app launcher, this is complete: the agent knows what to call, which values are accepted, and what to use instead for deep links/profiles. The absence of an output schema is not a gap here because the tool is a simple side-effecting launch command.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema only says 'App name', while the description provides the actual accepted values: youtube, youtube_music, youtube_kids, netflix, disney, prime, spotify, jellyfin, skyshowtime, and hbo. This is concrete semantic value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a clear action (launch) and resource (app on TV), then enumerates specific supported app names. It also distinguishes itself from tv_play by explicitly saying deep links and profiles are out of scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says to use tv_play when deep links or profiles are involved, which gives the agent a firm routing rule. The supported app list also tells the agent exactly which inputs are valid for this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tv_keyA
Send a remote control key press to the TV. Keys: up, down, left, right, center, back, home, play, pause, play_pause, stop, next, previous, fast_forward, rewind, volume_up, volume_down, mute, power, sleep, wakeup
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Key name (case-insensitive) | |
| count | No | Times to press (default: 1) | |
| delay | No | Delay in ms between presses (default: 300) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description states that the tool sends a key press and enumerates accepted key names, which covers the direct behavior. It does not disclose invalid key handling, connection requirements, or what the call returns, though for a simple key-press action this is a moderate gap, not a contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single introductory sentence followed by a compact list of keys. The verb/object pair is front-loaded, and every word contributes useful information. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The essential parameters (key, count, delay) are fully documented in the schema, and the description covers the accepted key set. For a stateless remote-control action with no output schema, only minor details like error/return behavior are missing, which are not critical for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes all three parameters with 100% coverage, including defaults for count and delay. The description adds value by enumerating the allowed key names, which the schema does not provide as an enum, helping the agent choose valid inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Send') and resource ('remote control key press to the TV') and lists valid key names, making the function immediately clear. It does not explicitly differentiate itself from sibling tools like tv_play or tv_power, but the generic key-press scope is distinguishable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No when-to-use guidance is given. The description never mentions alternatives or when tv_key should be preferred over dedicated siblings such as tv_power, tv_volume, or tv_play. The overlap between the key list and these sibling tools creates ambiguity that is left unresolved.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tv_playA
Search for and play content on the TV. Handles deep linking, force-stops, and profile selection automatically. Use for shows, movies, and music.
| Name | Required | Description | Default |
|---|---|---|---|
| music | No | Set true to search Spotify for music instead of JustWatch for video | |
| title | Yes | Content title (e.g. "Stranger Things", "Bohemian Rhapsody") | |
| profile | No | Profile name to select (e.g. "Justynka"). Uses service default if omitted. | |
| service | No | Preferred service: netflix, disney, prime, hbo, skyshowtime, spotify, youtube |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral disclosure burden. It does disclose non-obvious automatic behaviors: deep linking, force-stops, and automatic profile selection. However, it does not warn that force-stopping may interrupt currently running apps or that the TV may need to be powered on.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences cover the core action, automatic behaviors, and supported content types without unnecessary detail. Every sentence contributes useful information and the most important verb-resource pair is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a content playback tool with no output schema and no annotations, the description gives enough context to select and invoke it: what it does, what content types it supports, and key automatic behaviors. It could mention failure or status behavior, but that is less critical for a fire-and-play command.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, so the schema already explains the title, music, profile, and service parameters well. The description adds only a generic reference to automatic profile selection, which adds little beyond the structured definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action and resource: 'Search for and play content on the TV.' It also distinguishes itself from siblings by mentioning automatic deep linking, force-stops, and profile selection, which separates it from tv_search, tv_app, and other TV control tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives clear usage context ('Use for shows, movies, and music') and states the scope of what the tool handles. It does not explicitly contrast with tv_search for search-only requests or tv_app for direct app launching, but the intent is reasonably clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tv_powerA
Control TV power. Actions: on (wake + WOL if needed), off (standby), toggle, status
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Power action |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds useful behavioral detail beyond the schema by explaining that 'on' performs wake and WOL if needed and 'off' triggers standby. It does not disclose every edge case (e.g., what 'status' returns, idempotency), but for a simple power control tool with no annotations, it provides meaningful insight into operation semantics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely compact, front-loading the main purpose ('Control TV power') and then listing the actions in a clear, scannable format. Every word earns its place with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter tool with no output schema and simple action semantics, the description covers all necessary aspects: what the tool does, the allowed actions, and behavioral notes for key actions. The only minor gap is the lack of explicit mention of return values for 'status', but the action name and overall context make it fairly obvious.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although the schema covers 100% of parameter documentation, the description enriches the 'action' parameter by associating each enum value with a behavioral outcome. This goes beyond the schema's generic 'Power action' label, helping the agent pick the right value with greater confidence.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb-resource pairing ('Control TV power') and enumerates the exact actions (on, off, toggle, status), making it immediately clear this tool manages TV power. It clearly distinguishes from sibling tools like tv_play, tv_volume, and tv_key, which handle other functions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage context is implied by the tool's purpose and the sibling list, but there is no explicit guidance on when to choose this tool over alternatives. An agent must infer that power-related actions belong here rather than getting a direct 'use this when...' statement or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tv_searchA
Search for content across streaming services without playing. Returns available services and deep links. Use type "music" for Spotify track search.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Search type (default: video) | |
| title | Yes | Content to search for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden and it discloses that the tool does not play content and returns available services plus deep links. This gives the agent a clear side-effect profile and expected output. It does not cover edge cases like no results, but that is not critical for a search tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The core behavior and limitation are front-loaded, and the special-case music hint is efficiently appended.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter search tool with a rich schema, the description covers the essential points: no playback side effect, what is returned, and the special music variant. Nothing important is missing for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value by clarifying that type 'music' is for Spotify track search, which goes beyond the bare enum. It also frames 'title' as the content to search for.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Search for content'), a clear resource ('streaming services'), and an explicit scope boundary ('without playing'). This cleanly differentiates it from the sibling tv_play tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'without playing' tells the agent this is for discovery rather than playback, implicitly distinguishing it from tv_play. It also gives a concrete usage hint for the 'music' type. It does not explicitly name alternatives, but the context is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
tv_volumeA
Control TV volume. Actions: up, down (repeatable with steps), mute, unmute, set (absolute level via ADB key repeats)
| Name | Required | Description | Default |
|---|---|---|---|
| level | No | Target volume level (0-100) for "set". Sends key presses to approximate. | |
| steps | No | Number of up/down presses (default: 1) | |
| action | Yes | Volume action |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavior. It reveals the ADB key-repeat mechanism, supports repeatable up/down steps, and notes that set targets an absolute level. It does not mention result feedback or edge cases, but the core side effects are stated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one dense, front-loaded sentence with a concise action list. Parenthetical modifiers keep it compact while preserving important distinctions like repeatability and absolute level.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one required parameter and a fully documented schema, the description is nearly sufficient. It could mention what the tool returns or confirms after an action, but overall the action semantics and parameter mappings are adequately covered.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds 'absolute level' and 'ADB key repeats,' but these mostly restate or slightly extend what the schema already says for 'level' and 'steps.' No significant new parameter meaning is added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the resource (TV volume) and the specific actions available (up, down, mute, unmute, set). It is distinct from sibling tools like tv_power, tv_play, and tv_key without needing their schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states what the tool controls but does not explicitly say when to use it versus alternatives or when not to use it. Sibling tool names help by contrast, but the description itself provides no routing guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v0.1.0- First observed
tv_app - First observed
tv_key - First observed
tv_play - First observed
tv_power - First observed
tv_search - First observed
tv_volume
TDQS
Most tools have clear boundaries: tv_play handles playback with deep linking, tv_search only returns results, tv_app launches apps without deep linking, and tv_key sends raw key presses. Some overlap exists between tv_volume and tv_key (both can send volume commands), and tv_play/tv_app can both launch content, but descriptions clarify when each should be used.
All tools follow a consistent tv_ prefix and snake_case convention, making the set predictable. The second part is mostly an action noun (power, volume, key, app) rather than a strict verb_noun pattern, but the naming remains coherent and easy to navigate.
Six tools is a well-scoped set for a TV remote control server. Each tool covers a distinct major function: playback, power, volume, key input, app launching, and search — no unnecessary bloat or redundant duplicates.
The core remote control lifecycle is well covered: power, volume, navigation, playback, app launch, and content discovery. Obvious gaps like input/source switching or querying current playback status are missing, but the tool surface is still sufficient for most common TV control workflows.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Control Android TV from any AI. 38 MCP tools: playback, recap, recommend, smart-home, schedules.
Remote MCP server for AI.TV creators — delegate account operations to your AI agent over MCP.
MCP server connecting AI agents to 100+ apps (Gmail, Slack, Notion, GitHub) via one-click OAuth.
MCP server for building and testing AI agents with multi-model experimentation and insights.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA Model Context Protocol server that enables AI assistants to control Android TV devices, providing remote control functionality like navigation, playback control, app management, and device status monitoring.9MIT
- FlicenseAqualityDmaintenanceA MCP server that enables AI assistants to control Android devices via ADB, supporting device info, screen control, input simulation, app management, shell execution, file transfer, and UI parsing.20-
- AlicenseAqualityAmaintenanceMCP server that gives AI agents full vision and control over Android devices via ADB and scrcpy. Supports screenshots, input, apps, UI automation, shell, files, and clipboard.3839191MIT
- FlicenseNot gradedqualityDmaintenanceA powerful MCP server that provides comprehensive Android device automation capabilities through ADB, enabling AI agents to interact with Android devices for testing, automation, and device control tasks.1-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Hustawek/remote-control-tv'
If you have feedback or need assistance with the MCP directory API, please join our Discord server