BrunoSan AI News MCP Server

BrunoSan AI News MCP Server

A Model Context Protocol server that exposes real-time AI news intelligence to AI agents and MCP-compatible clients, with 9 deterministic tools for search, trending, signals, and risk analysis.

Category
访问服务器

README

<div align="center">

BrunoSan AI News MCP Server

Real-time AI news intelligence for AI agents · MCP-native · EU-hosted

License: Apache 2.0 Python 3.12 MCP Hosted

</div>


What this is

A Model Context Protocol server that exposes the BrunoSan AI News intelligence layer to AI agents and MCP-compatible clients (Claude Desktop, Cursor, n8n, custom agents).

88,000+   AI and tech articles indexed
10,500+   curated global sources
77,000+   tracked entities (companies · people · products · regions)
        9 deterministic, auditable tools

Snapshot: 2026-05-03 · Articles archive reaches back to January 2020 · Daily growing.

What this is not

This repository contains the read-layer that exposes the BrunoSan news database as MCP tools. Article ingestion, source curation, deterministic scoring, and clustering pipelines run upstream and remain operated by DoWell UG.

If you want the data, the recommended path is the hosted service. Self-hosting this server is supported but requires you to provide your own news database.

Use the hosted service

Free trial (50 calls, no card required) and paid tiers: https://brunosan.de/mcp.html

Endpoint: https://mcp.brunosan.de/mcp

After subscribing, you receive an API key. Pass it as the api_key parameter on every tool call. Works with any MCP-compatible client.

Claude Desktop

Add to your claude_desktop_config.json (see examples/claude_desktop_config.json):

{
  "mcpServers": {
    "brunosan-ai-news": {
      "url": "https://mcp.brunosan.de/mcp",
      "transport": "http"
    }
  }
}

Restart Claude Desktop. Ask: "What are today's trending AI topics?"

Smithery

Listed and verified: https://smithery.ai/server/@brunosan/global-ai-news

Self-host this server

For developers who want to point the server at their own news database, or who want to extend the read-layer.

Requirements

  • Docker and Docker Compose
  • A SQLite database with the BrunoSan news schema
  • Python 3.12 if you prefer running without Docker

Quick start with Docker

git clone https://github.com/DowellUG/brunosan-ai-news-mcp.git
cd brunosan-ai-news-mcp
cp .env.example .env

# Place your news SQLite DB at:
mkdir -p data
cp /path/to/your/brunosan_news.db data/

docker compose up -d

The MCP endpoint will be available at http://localhost:8020/mcp.

To connect from Claude Desktop locally, point the config URL at your own host. To disable authentication entirely (development mode), set BRUNOSAN_AUTH_DB="" in the environment.

Run without Docker

pip install -r requirements.txt
export BRUNOSAN_NEWS_DB=/absolute/path/to/brunosan_news.db
export BRUNOSAN_AUTH_DB=""   # disable auth for local dev
python brunosan_news_mcp.py

The nine tools

All tools are read-only, idempotent, and require an api_key parameter.

Information tools

  • news_search — Full-text search across all articles. Returns matched articles with title, teaser, source, URL, and publication date.

  • news_get_entity — Profile of a company, person, product, or region. Returns recent articles and the entities most frequently co-mentioned alongside it.

  • news_trending — Top topic clusters for a given day, ranked by burst score. Each cluster has a representative title, top entities, and counts.

  • news_daily_digest — Full daily overview with statistics and top clusters. Designed for morning briefings and newsletter preparation.

  • news_get_sources — Source statistics and database overview. Useful for transparency checks.

  • news_search_entities — Discovery across known entities, with optional type filter (company, person, product, region).

Signal tools

  • news_signal_strength — Seven deterministic 0–100 scores per article: AI relevance, business relevance, Mittelstand relevance, regulation, risk, cost, operational. All computed without LLMs and reproducible.

  • news_decision_maker_brief — Cluster ranking for a chosen role (CDO, CTO, CEO, Compliance) using a transparent composite formula:

    composite_score = burst_score
                    × (tier1_source_count + 1)
                    × (hard_numbers_count + 1)
                    × ai_relevance_score
    

    The formula is identical across roles; the role only filters which clusters are eligible. The output includes every input component so the score can be verified.

  • news_risk_radar — Risk and compliance signals ranked by an open formula:

    combined_risk_score = (risk_signal_count    × 2)
                        + (compliance_signal_count × 3)
                        + (official_source_count   × 1)
    

    Returns clusters sorted by combined score with all three component counts visible for audit.

Architecture

┌───────────────────┐       ┌──────────────────────┐       ┌─────────────────┐
│  MCP Client       │───────▶  This Server         │───────▶  News Database  │
│  (Claude/Cursor)  │  MCP  │  (read-only)         │ SQL   │  (read-only)    │
└───────────────────┘       └──────────────────────┘       └─────────────────┘
                                       │
                                       ▼
                            ┌──────────────────────┐
                            │  Auth (reference     │
                            │  or hosted version)  │
                            └──────────────────────┘

The server reads from news_articles, daily_clusters, daily_cluster_members, daily_cluster_evidence, daily_cluster_entities, article_entities, and article_fact_profile. It writes only to the auth-key database (call counters, when applicable).

Configuration

Variable Default Description
BRUNOSAN_NEWS_DB /data/brunosan_news.db Path to the news SQLite database.
BRUNOSAN_AUTH_DB /auth/api_keys.db Path to the auth key database. Set to empty string to disable auth.
BRUNOSAN_HOST 0.0.0.0 Bind host.
BRUNOSAN_PORT 8020 Bind port.

Production deployment notes

The hosted service uses Traefik for TLS termination and the multi-vertical auth library (per-vertical key scoping, tier limits, billing integration) which is operated separately and not in this repository.

For your own production deployment, terminate TLS with a reverse proxy (Caddy, Traefik, nginx) in front of this container, which speaks plain HTTP on port 8020.

License

Apache License 2.0 — see also NOTICE for attribution.

Operated by

DoWell UG · Hamburg, Germany

For partnerships, custom integrations, or workshop bookings: oliver@brunosan.de


<sub>Built daily, in the EU. 🐾</sub>

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选