MCP server for ChipsNews — manage news sources, articles, and triggers
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-fgasparetto-chipsnews-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for ChipsNews — manage news configuration, sources, articles, and fetch triggers from Claude Code, Claude Desktop, or any MCP client.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in writing
A markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.
f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.
Define task-specific AI sub-agents in Markdown for any MCP-compatible tool.
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP Security Weekly
Get CVE alerts and security updates for io.github.fgasparetto/chipsnews-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for ChipsNews — manage news configuration, sources, articles, and fetch triggers from Claude Code, Claude Desktop, or any MCP client.
No installation needed with uv:
uv run --script server.py
Or install manually:
pip install "mcp[cli]" httpx
python server.py
The server uses environment variables for authentication:
| Variable | Description | Default |
|---|---|---|
CHIPSNEWS_API_URL | API base URL | https://news.chipsbuilder.com |
CHIPSNEWS_API_KEY | Your API key (Bearer token) | — |
Add to your project's .mcp.json:
{
"mcpServers": {
"chipsnews": {
"command": "uv",
"args": ["run", "--script", "/path/to/chipsnews-mcp/server.py"],
"env": {
"CHIPSNEWS_API_URL": "https://news.chipsbuilder.com",
"CHIPSNEWS_API_KEY": "your-api-key"
}
}
}
}
Add to claude_desktop_config.json:
{
"mcpServers": {
"chipsnews": {
"command": "uv",
"args": ["run", "--script", "/path/to/chipsnews-mcp/server.py"],
"env": {
"CHIPSNEWS_API_KEY": "your-api-key"
}
}
}
}
| Tool | Description |
|---|---|
get_config | Get news configuration (keywords, language, frequency, etc.) |
update_config | Update configuration fields (keywords, language, frequency, auto_publish, notification_email, pin_duration_hours, etc.) |
| Tool | Description |
|---|---|
list_sources | List all news sources |
create_source | Create a new source (rss, google, reddit) |
update_source | Update an existing source |
delete_source | Delete a source |
| Tool | Description |
|---|---|
list_articles | List articles with optional filters (status, keyword, source, page) |
get_article | Get full details of a single article |
approve_article | Approve and publish an article |
reject_article | Reject an article |
pin_article | Pin an article to the top (TOP) |
unpin_article | Remove pin from an article |
lock_article | Lock an article to protect from rotation cleanup |
unlock_article | Unlock an article |
delete_article | Delete an article |
delete_all_articles | Delete ALL articles (use with caution) |
| Tool | Description |
|---|---|
trigger_fetch | Trigger a manual news fetch from all active sources |
get_stats | Get usage statistics: article counts, API calls, fetch history |
Once configured, use natural language in Claude:
The server uses API key authentication (Bearer token). Pass your key via the CHIPSNEWS_API_KEY environment variable.
MIT