|
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 | | - "version": "0.5.5", |
| 6 | + "version": "0.5.6", |
6 | 7 | "description": "MCP server retrieving transcripts of YouTube videos", |
7 | 8 | "author": { |
8 | 9 | "name": "Junpei Kawamoto", |
|
20 | 21 | "args": [ |
21 | 22 | "--from", |
22 | 23 | "${__dirname}", |
23 | | - "mcp-youtube-transcript" |
| 24 | + "mcp-youtube-transcript", |
| 25 | + "--response-limit", |
| 26 | + "${user_config.response_limit}" |
24 | 27 | ], |
25 | 28 | "env": { |
26 | | - "DEBUG": "${user_config.debug_mode}" |
| 29 | + "WEBSHARE_PROXY_USERNAME": "${user_config.webshare_proxy_username}", |
| 30 | + "WEBSHARE_PROXY_PASSWORD": "${user_config.webshare_proxy_password}", |
| 31 | + "HTTP_PROXY": "${user_config.http_proxy}", |
| 32 | + "HTTPS_PROXY": "${user_config.https_proxy}" |
27 | 33 | } |
28 | 34 | } |
29 | 35 | }, |
|
46 | 52 | "python": ">=3.10" |
47 | 53 | } |
48 | 54 | }, |
| 55 | + "user_config": { |
| 56 | + "response_limit": { |
| 57 | + "type": "number", |
| 58 | + "title": "Maximum response character limit", |
| 59 | + "description": "Maximum number of characters each response contains. Set a negative value to disable pagination.", |
| 60 | + "required": false, |
| 61 | + "default": 50000 |
| 62 | + }, |
| 63 | + "webshare_proxy_username": { |
| 64 | + "type": "string", |
| 65 | + "title": "Webshare proxy service username", |
| 66 | + "description": "Username for authentication with Webshare proxy service", |
| 67 | + "required": false, |
| 68 | + "default": "" |
| 69 | + }, |
| 70 | + "webshare_proxy_password": { |
| 71 | + "type": "string", |
| 72 | + "title": "Webshare proxy service password", |
| 73 | + "description": "Password for authentication with Webshare proxy service", |
| 74 | + "required": false, |
| 75 | + "sensitive": true, |
| 76 | + "default": "" |
| 77 | + }, |
| 78 | + "http_proxy": { |
| 79 | + "type": "string", |
| 80 | + "title": "HTTP proxy server URL", |
| 81 | + "description": "URL of an HTTP proxy server to use for requests (e.g. http://proxy.example.com:8080)", |
| 82 | + "required": false, |
| 83 | + "default": "" |
| 84 | + }, |
| 85 | + "https_proxy": { |
| 86 | + "type": "string", |
| 87 | + "title": "HTTPS proxy server URL", |
| 88 | + "description": "URL of an HTTPS proxy server to use for secure requests (e.g. https://proxy.example.com:8080)", |
| 89 | + "required": false, |
| 90 | + "default": "" |
| 91 | + } |
| 92 | + }, |
49 | 93 | "keywords": [ |
50 | 94 | "youtube" |
51 | 95 | ], |
|
0 commit comments