|
1 | 1 | { |
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", |
3 | 4 | "name": "mcp-youtube-transcript", |
4 | 5 | "display_name": "YouTube Transcript MCP Server", |
5 | 6 | "version": "0.5.5", |
|
23 | 24 | "mcp-youtube-transcript" |
24 | 25 | ], |
25 | 26 | "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}" |
27 | 31 | } |
28 | 32 | } |
29 | 33 | }, |
|
46 | 50 | "python": ">=3.10" |
47 | 51 | } |
48 | 52 | }, |
| 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 | + }, |
49 | 84 | "keywords": [ |
50 | 85 | "youtube" |
51 | 86 | ], |
|
0 commit comments