Skip to content

Commit f978308

Browse files
committed
chore: update manifest schema and add proxy configuration options
1 parent 4775f73 commit f978308

File tree

1 file changed

+37
-2
lines changed

1 file changed

+37
-2
lines changed

manifest.json

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"manifest_version": "0.2",
2+
"$schema": "https://raw.githubusercontent.com/anthropics/mcpb/refs/heads/main/schemas/mcpb-manifest-v0.3.schema.json",
3+
"manifest_version": "0.3",
34
"name": "mcp-youtube-transcript",
45
"display_name": "YouTube Transcript MCP Server",
56
"version": "0.5.5",
@@ -23,7 +24,10 @@
2324
"mcp-youtube-transcript"
2425
],
2526
"env": {
26-
"DEBUG": "${user_config.debug_mode}"
27+
"WEBSHARE_PROXY_USERNAME": "${user_config.webshare_proxy_username}",
28+
"WEBSHARE_PROXY_PASSWORD": "${user_config.webshare_proxy_password}",
29+
"HTTP_PROXY": "${user_config.http_proxy}",
30+
"HTTPS_PROXY": "${user_config.https_proxy}"
2731
}
2832
}
2933
},
@@ -46,6 +50,37 @@
4650
"python": ">=3.10"
4751
}
4852
},
53+
"user_config": {
54+
"webshare_proxy_username": {
55+
"type": "string",
56+
"title": "Webshare proxy service username",
57+
"description": "Username for authentication with Webshare proxy service",
58+
"required": false,
59+
"default": ""
60+
},
61+
"webshare_proxy_password": {
62+
"type": "string",
63+
"title": "Webshare proxy service password",
64+
"description": "Password for authentication with Webshare proxy service",
65+
"required": false,
66+
"sensitive": true,
67+
"default": ""
68+
},
69+
"http_proxy": {
70+
"type": "string",
71+
"title": "HTTP proxy server URL",
72+
"description": "URL of an HTTP proxy server to use for requests (e.g. http://proxy.example.com:8080)",
73+
"required": false,
74+
"default": ""
75+
},
76+
"https_proxy": {
77+
"type": "string",
78+
"title": "HTTPS proxy server URL",
79+
"description": "URL of an HTTPS proxy server to use for secure requests (e.g. https://proxy.example.com:8080)",
80+
"required": false,
81+
"default": ""
82+
}
83+
},
4984
"keywords": [
5085
"youtube"
5186
],

0 commit comments

Comments
 (0)