google-news-trends-mcp 0.1.0__tar.gz → 0.1.2__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.
Files changed (17) hide show
  1. {google_news_trends_mcp-0.1.0/src/google_news_trends_mcp.egg-info → google_news_trends_mcp-0.1.2}/PKG-INFO +10 -6
  2. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/README.md +3 -3
  3. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/pyproject.toml +20 -3
  4. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2/src/google_news_trends_mcp.egg-info}/PKG-INFO +10 -6
  5. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/LICENSE +0 -0
  6. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/setup.cfg +0 -0
  7. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp/__init__.py +0 -0
  8. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp/__main__.py +0 -0
  9. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp/cli.py +0 -0
  10. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp/news.py +0 -0
  11. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp/server.py +0 -0
  12. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp.egg-info/SOURCES.txt +0 -0
  13. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp.egg-info/dependency_links.txt +0 -0
  14. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp.egg-info/entry_points.txt +0 -0
  15. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp.egg-info/requires.txt +0 -0
  16. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/src/google_news_trends_mcp.egg-info/top_level.txt +0 -0
  17. {google_news_trends_mcp-0.1.0 → google_news_trends_mcp-0.1.2}/tests/test_server.py +0 -0
@@ -1,9 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: google-news-trends-mcp
3
- Version: 0.1.0
4
- Summary: Add your description here
3
+ Version: 0.1.2
4
+ Summary: An MCP server to access Google News and Google Trends.
5
5
  Author-email: Jesse Manek <jesse.manek@gmail.com>
6
- License: MIT
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/jmanek/google-news-trends-mcp
8
+ Project-URL: Repository, https://github.com/jmanek/google-news-trends-mcp
9
+ Project-URL: Issues, https://github.com/jmanek/google-news-trends-mcp/issues
10
+ Keywords: google,news,trends,mcp,fastmcp,llm,nlp,gnews,newspaper
7
11
  Requires-Python: >=3.10.18
8
12
  Description-Content-Type: text/markdown
9
13
  License-File: LICENSE
@@ -50,7 +54,7 @@ pip install google-news-trends-mcp
50
54
  After installation, you can run it as a script using:
51
55
 
52
56
  ```bash
53
- python -m google-news-trends-mcp
57
+ python -m google_news_trends_mcp
54
58
  ```
55
59
 
56
60
  ## Configuration
@@ -82,7 +86,7 @@ Add to your Claude settings:
82
86
  "mcpServers": {
83
87
  "google-news-trends": {
84
88
  "command": "python",
85
- "args": ["-m", "google-news-trends-mcp"]
89
+ "args": ["-m", "google_news_trends_mcp"]
86
90
  }
87
91
  }
88
92
  }
@@ -117,7 +121,7 @@ Add to your Claude settings:
117
121
  "servers": {
118
122
  "google-news-trends": {
119
123
  "command": "python",
120
- "args": ["-m", "google-news-trends-mcp"]
124
+ "args": ["-m", "google_news_trends_mcp"]
121
125
  }
122
126
  }
123
127
  }
@@ -25,7 +25,7 @@ pip install google-news-trends-mcp
25
25
  After installation, you can run it as a script using:
26
26
 
27
27
  ```bash
28
- python -m google-news-trends-mcp
28
+ python -m google_news_trends_mcp
29
29
  ```
30
30
 
31
31
  ## Configuration
@@ -57,7 +57,7 @@ Add to your Claude settings:
57
57
  "mcpServers": {
58
58
  "google-news-trends": {
59
59
  "command": "python",
60
- "args": ["-m", "google-news-trends-mcp"]
60
+ "args": ["-m", "google_news_trends_mcp"]
61
61
  }
62
62
  }
63
63
  }
@@ -92,7 +92,7 @@ Add to your Claude settings:
92
92
  "servers": {
93
93
  "google-news-trends": {
94
94
  "command": "python",
95
- "args": ["-m", "google-news-trends-mcp"]
95
+ "args": ["-m", "google_news_trends_mcp"]
96
96
  }
97
97
  }
98
98
  }
@@ -1,13 +1,25 @@
1
1
  [project]
2
2
  name = "google-news-trends-mcp"
3
- version = "0.1.0"
4
- description = "Add your description here"
3
+ version = "0.1.2"
4
+ description = "An MCP server to access Google News and Google Trends."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10.18"
7
7
  authors = [
8
8
  { name = "Jesse Manek", email = "jesse.manek@gmail.com" },
9
9
  ]
10
- license = { text = "MIT" }
10
+ keywords = [
11
+ "google",
12
+ "news",
13
+ "trends",
14
+ "mcp",
15
+ "fastmcp",
16
+ "llm",
17
+ "nlp",
18
+ "gnews",
19
+ "newspaper",
20
+ ]
21
+ license = "MIT"
22
+ license-files = ["LICENSE"]
11
23
  dependencies = [
12
24
  "asyncio>=3.4.3",
13
25
  "click>=8.2.1",
@@ -47,3 +59,8 @@ addopts = [
47
59
  ]
48
60
  asyncio_mode = "auto"
49
61
  pythonpath = "src"
62
+
63
+ [project.urls]
64
+ Homepage = "https://github.com/jmanek/google-news-trends-mcp"
65
+ Repository = "https://github.com/jmanek/google-news-trends-mcp"
66
+ Issues = "https://github.com/jmanek/google-news-trends-mcp/issues"
@@ -1,9 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: google-news-trends-mcp
3
- Version: 0.1.0
4
- Summary: Add your description here
3
+ Version: 0.1.2
4
+ Summary: An MCP server to access Google News and Google Trends.
5
5
  Author-email: Jesse Manek <jesse.manek@gmail.com>
6
- License: MIT
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/jmanek/google-news-trends-mcp
8
+ Project-URL: Repository, https://github.com/jmanek/google-news-trends-mcp
9
+ Project-URL: Issues, https://github.com/jmanek/google-news-trends-mcp/issues
10
+ Keywords: google,news,trends,mcp,fastmcp,llm,nlp,gnews,newspaper
7
11
  Requires-Python: >=3.10.18
8
12
  Description-Content-Type: text/markdown
9
13
  License-File: LICENSE
@@ -50,7 +54,7 @@ pip install google-news-trends-mcp
50
54
  After installation, you can run it as a script using:
51
55
 
52
56
  ```bash
53
- python -m google-news-trends-mcp
57
+ python -m google_news_trends_mcp
54
58
  ```
55
59
 
56
60
  ## Configuration
@@ -82,7 +86,7 @@ Add to your Claude settings:
82
86
  "mcpServers": {
83
87
  "google-news-trends": {
84
88
  "command": "python",
85
- "args": ["-m", "google-news-trends-mcp"]
89
+ "args": ["-m", "google_news_trends_mcp"]
86
90
  }
87
91
  }
88
92
  }
@@ -117,7 +121,7 @@ Add to your Claude settings:
117
121
  "servers": {
118
122
  "google-news-trends": {
119
123
  "command": "python",
120
- "args": ["-m", "google-news-trends-mcp"]
124
+ "args": ["-m", "google_news_trends_mcp"]
121
125
  }
122
126
  }
123
127
  }