mcp-server-youtube-info 0.1.5__tar.gz → 0.1.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-server-youtube-info
3
- Version: 0.1.5
3
+ Version: 0.1.7
4
4
  Summary: A YouTube information retrieval server implementation for Model Context Protocol (MCP)
5
- Project-URL: Homepage, https://github.com/yareyaredesuyo/mcp-servers
6
- Project-URL: Repository, https://github.com/yareyaredesuyo/mcp-servers.git
7
- Project-URL: Documentation, https://github.com/yareyaredesuyo/mcp-servers#readme
8
- Project-URL: Bug Tracker, https://github.com/yareyaredesuyo/mcp-servers/issues
9
5
  Author-email: yareyaredesuyo <yareyaredesuyo@gmail.com>
10
6
  License-Expression: MIT
11
7
  Keywords: automation,llm,mcp,model-context-protocol,youtube
@@ -85,7 +81,7 @@ Add to your Claude settings:
85
81
  ```json
86
82
  {
87
83
  "mcpServers": {
88
- "testing": {
84
+ "youtube-info": {
89
85
  "command": "uvx",
90
86
  "args": ["mcp-server-youtube-info"]
91
87
  }
@@ -60,7 +60,7 @@ Add to your Claude settings:
60
60
  ```json
61
61
  {
62
62
  "mcpServers": {
63
- "testing": {
63
+ "youtube-info": {
64
64
  "command": "uvx",
65
65
  "args": ["mcp-server-youtube-info"]
66
66
  }
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mcp-server-youtube-info"
3
- version = "0.1.5"
3
+ version = "0.1.7"
4
4
  description = "A YouTube information retrieval server implementation for Model Context Protocol (MCP)"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -23,12 +23,6 @@ dependencies = [
23
23
  "yt-dlp>=2025.5.22",
24
24
  ]
25
25
 
26
- [project.urls]
27
- Homepage = "https://github.com/yareyaredesuyo/mcp-servers"
28
- Repository = "https://github.com/yareyaredesuyo/mcp-servers.git"
29
- Documentation = "https://github.com/yareyaredesuyo/mcp-servers#readme"
30
- "Bug Tracker" = "https://github.com/yareyaredesuyo/mcp-servers/issues"
31
-
32
26
  [project.scripts]
33
27
  mcp-server-youtube-info = "mcp_server_youtube_info:main"
34
28