chipsnews-mcp
MCP server for ChipsNews — manage news configuration, sources, articles, and fetch triggers from any MCP client.
README
<!-- mcp-name: io.github.fgasparetto/chipsnews-mcp -->
ChipsNews MCP Server
MCP (Model Context Protocol) server for ChipsNews — manage news configuration, sources, articles, and fetch triggers from Claude Code, Claude Desktop, or any MCP client.
Requirements
- Python 3.11+
- uv (recommended) or pip
- A ChipsNews API key
Quick Start
No installation needed with uv:
uv run --script server.py
Or install manually:
pip install "mcp[cli]" httpx
python server.py
Configuration
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) | — |
Claude Code
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"
}
}
}
}
Claude Desktop
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"
}
}
}
}
Available Tools
Configuration
| 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.) |
Sources
| 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 |
Articles
| 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) |
Fetch & Stats
| Tool | Description |
|---|---|
trigger_fetch |
Trigger a manual news fetch from all active sources |
get_stats |
Get usage statistics: article counts, API calls, fetch history |
Usage Examples
Once configured, use natural language in Claude:
- "List all news sources"
- "Add an RSS feed for TechCrunch"
- "Show published articles"
- "Approve article 42"
- "Pin the top article"
- "Trigger a news fetch"
- "Show news stats"
- "Update keywords to AI, startup, fintech"
Authentication
The server uses API key authentication (Bearer token). Pass your key via the CHIPSNEWS_API_KEY environment variable.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.