-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
57 lines (57 loc) · 1.6 KB
/
Copy pathserver.json
File metadata and controls
57 lines (57 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.netixc/stremio-mcp",
"title": "Stremio MCP Server",
"description": "Search, play, and control Stremio on Android TV over native ADB.",
"repository": {
"url": "https://github.com/netixc/stremio-mcp",
"source": "github"
},
"version": "0.2.0",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "stremio-mcp-server",
"version": "0.2.0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "ANDROID_TV_HOST",
"description": "Android TV IP address for playback and device control",
"isRequired": false,
"isSecret": false
},
{
"name": "ANDROID_TV_PORT",
"description": "Current ADB connection port",
"default": "5555",
"isRequired": false,
"isSecret": false
},
{
"name": "TMDB_API_KEY",
"description": "TMDB API key for title search",
"isRequired": false,
"isSecret": true
},
{
"name": "STREMIO_AUTH_KEY",
"description": "Stremio account token for library reads and writes",
"isRequired": false,
"isSecret": true
},
{
"name": "ADB_PATH",
"description": "Path to the native ADB executable",
"default": "adb",
"isRequired": false,
"isSecret": false
}
]
}
]
}