femtech-radar

femtech-radar

An MCP server that fetches, dedupes, and scores women's-health & FemTech research and industry news, designed to feed GitHub Agentic Workflows and an auto-updating Astro + RSS site.

Category
访问服务器

README

<!-- AGENT-FIRST NOTICE -->

[!IMPORTANT]

🤖 Read this with your AI agent — don't read it by hand.

This repo is written agent-first. Point Claude Code, GitHub Copilot, Cursor, or any agent at it: "Read the README and AGENTS.md, then help me run / extend this." Structure + AGENTS.md are optimized for agent comprehension. <!-- /AGENT-FIRST NOTICE -->

<div align="center"><a name="readme-top"></a>

<!-- Optional hero image / logo: <img src="./.github/brand/your-logo.svg" alt="femtech-radar" width="120" /> -->

🚀 femtech-radar

FemTech intelligence as a GitHub-native, agent-driven pipeline

Agent-first FemTech intelligence: an MCP server that fetches, dedupes, and scores women's-health & FemTech research and industry news, designed to feed GitHub Agentic Workflows and an auto-updating Astro + RSS site.

[Live Demo][demo-link] · [Documentation][docs-link] · Changelog · Report Bug · Request Feature

<!-- SHIELD GROUP -->

License CI Contributors Forks Stars Issues Sponsor

<!-- Tech stack badges — replace with your real stack: Next.js TypeScript -->

</div>

<details> <summary><kbd>📑 Table of Contents</kbd></summary>

</details>

🌟 Introduction

The FemTech and women's-health world produces a scattered firehose of signal — research preprints, funding and product news, community opportunities, technical discussion — across dozens of sources. femtech-radar turns that noise into a curated, deduplicated, ranked digest, using only GitHub-native primitives plus a reusable Model Context Protocol (MCP) server.

It's a complete, live three-unit pipelinescrape → curate → publish:

  1. an MCP server (the deterministic "brain") fetches from multiple sources, normalizes into one shape, dedupes, and scores each item by relevance × popularity × freshness, exposing the result over MCP;
  2. a weekly GitHub Agentic Workflow (gh aw) drives the MCP, lets Copilot curate the digest, and commits the week's data/*.json via a review-gated PR;
  3. an Astro + RSS site reads that data and auto-deploys to GitHub Pages.

It's built for FemTech / women-in-tech practitioners who want signal without the noise — and as a reference implementation of the gh aw × MCP × GitHub Pages pattern. The product is live: a subscribable weekly intelligence site at https://chanmeng666.github.io/femtech-radar/ that updates itself for free on a public GitHub repo.

✨ Key Features

1 One MCP tool, a whole radarradar_collect returns normalized, deduped, scored items per section. All four sections are live: industry (Google News), research (arXiv), opportunities (LinkedIn, with opt-in SerpAPI Google Jobs), and discussions (Hacker News).

2 Deterministic, testable corefetch → normalize → dedupe → score. The server makes no editorial judgment; that's left to the agent that drives it. 28 unit tests, and zero real network calls in tests (all I/O is injected).

3 Pluggable source adapters — each source is one file behind a uniform Adapter interface. Add a feed by writing a collect() that returns RadarItem[].

4 Resilient by construction — every source failure degrades to an empty result plus a warning; a malformed URL or date never throws out of a run.

5 GitHub-native, near-zero cost — designed to run inside GitHub Actions on a public repo, where Actions and Pages are free; the only metered resource is a few Copilot credits per week.

6 Reusable anywhere MCP runs — drop it into Claude Desktop or any MCP client; it isn't coupled to this project.

7 Live, self-updating, subscribable — a weekly gh aw workflow curates the digest into a review-gated data/*.json PR, and an Astro + RSS site rebuilds itself on GitHub Pages. Readers subscribe via the full RSS feed or per-section feeds at /rss/<section>.xml — no manual scraping, no server to run.

🛠️ Tech Stack

  • Language / Runtime: TypeScript 5 (strict, ESM) · Node.js ≥ 20
  • MCP: @modelcontextprotocol/sdk (stdio server)
  • Parsing / validation: Zod (schema & runtime validation) · fast-xml-parser (Atom/RSS)
  • Tooling: pnpm workspaces (monorepo) · Vitest (tests) · tsup (build)
  • Orchestration: GitHub Agentic Workflows (gh aw) · engine copilot, model gpt-4.1 · weekly schedule → review-gated data PR
  • Site: Astro 5 (femtech-radar-site) · @astrojs/rss · GitHub Pages deploy via deploy-pages.yml
  • Built on: the opportunities adapter ports LinkedIn guest-endpoint logic from the owner's linkedin-jobs-search project (inspired by linkedin-jobs-api); the opt-in SerpAPI Google Jobs path is ported from server-google-jobs

🏗️ Architecture

<details> <summary><kbd>System overview</kbd></summary>

graph TD
    subgraph Sources
      A1[arXiv API]
      A2[Google News RSS]
      A3[LinkedIn Jobs]
      A4[Hacker News Algolia]
    end
    A1 --> AD[Source adapters<br/>normalize → RadarItem]
    A2 --> AD
    A3 --> AD
    A4 --> AD
    AD --> P["collect()<br/>dedupe → score → sort → since-filter"]
    P --> T[MCP tools<br/>radar_collect · radar_sources]
    T --> C[MCP clients]
    C --> W[Weekly gh aw workflow<br/>Copilot curates · writes why_it_matters]
    W --> D[(data/YYYY-Www.json<br/>review-gated PR)]
    D --> S[Astro + RSS site<br/>GitHub Pages · live]

All three units are built and live; all four source sections are active.

</details>

Separation of determinism vs judgment: the MCP server does only deterministic work (fetch, normalize, dedupe, score). Editorial choices — which items to feature, how to summarize — belong to the agent (gh aw + Copilot) that drives it. This keeps the core unit-testable and reusable.

🚀 Getting Started

Prerequisites

  • Node.js ≥ 20 (the server uses global fetch)
  • pnpm ≥ 9 (npm i -g pnpm)
  • (optional) an MCP client such as Claude Desktop, or the gh aw CLI

Installation

git clone https://github.com/ChanMeng666/femtech-radar.git
cd femtech-radar
pnpm install

# Build the MCP server
pnpm --filter @chanmeng666/femtech-radar-mcp build

# Run the test suite (28 tests)
pnpm --filter @chanmeng666/femtech-radar-mcp test

The built server is an executable stdio MCP server at packages/mcp-server/dist/index.js. It's also published to npm, so any MCP client can run it with npx -y @chanmeng666/femtech-radar-mcp.

Run the site locally

# Dev server (reads data/*.json)
pnpm --filter femtech-radar-site dev

# Production build + preview
pnpm --filter femtech-radar-site build
pnpm --filter femtech-radar-site preview

The published site is live at https://chanmeng666.github.io/femtech-radar/ (RSS: /rss.xml); it rebuilds automatically whenever a new weekly data/*.json lands on master.

🛳 Project Status & Roadmap

All three planned layers are built and live in production (see docs/superpowers/specs for the full design and docs/superpowers/plans for the per-unit implementation plans):

  • v1 — MCP server: industry (Google News) + research (arXiv) adapters, dedupe/score pipeline, radar_collect / radar_sources tools, resilient error handling, 28 tests. Published to npm as @chanmeng666/femtech-radar-mcp.
  • v2 — orchestration: a weekly gh aw workflow (engine copilot, model gpt-4.1) that drives the MCP, curates a digest, and emits a review-gated data PR plus a summary issue — proven end-to-end in production (first digest: data/2026-W27.json).
  • v3 — publishing (live): Astro 5 site auto-deployed to GitHub Pages at https://chanmeng666.github.io/femtech-radar/ with a subscribable RSS feed at https://chanmeng666.github.io/femtech-radar/rss.xml; rebuilds automatically on every weekly data update.
  • vNext — 4-section pipeline: opportunities (LinkedIn, with opt-in SerpAPI Google Jobs) and discussions (Hacker News) adapters now active; per-section RSS feeds at /rss/<section>.xml; site polish (favicon, numeric-entity decode, sources chip); weekly workflow updated to collect all four sections.

Deferred to a future version: ChatOps slash commands (/deep-dive) and full bilingual support (i18n routing is reserved).

📖 Usage Guide

femtech-radar is consumed as an MCP server. It exposes two tools:

Tool Parameters Returns
radar_collect section ("industry" | "research" | "opportunities" | "discussions"), optional since (ISO date, default 7 days ago), optional limit (default 15) { items: RadarItem[], warnings: string[] } — deduped, scored, sorted, date-filtered
radar_sources none the configured source list per section

All four sections are live. industry (Google News) and research (arXiv) require no API key. opportunities uses LinkedIn by default (opt-in SerpAPI Google Jobs when SERP_API_KEY is set). discussions uses Hacker News Algolia (free, no key). LinkedIn is best-effort — graceful degradation to [] applies if rate-limited.

Subscribe via RSS: the weekly digest is published at https://chanmeng666.github.io/femtech-radar/rss.xml and works in any feed reader.

Use with GitHub Agentic Workflows (gh aw)

mcp-servers:
  femtech-radar:
    command: npx
    args: ["-y", "@chanmeng666/femtech-radar-mcp"]

Use with Claude Desktop

{
  "mcpServers": {
    "femtech-radar": {
      "command": "node",
      "args": ["/absolute/path/to/femtech-radar/packages/mcp-server/dist/index.js"]
    }
  }
}

npx @chanmeng666/femtech-radar-mcp works once the package is published to npm (v2). Until then, build locally and point your client at dist/index.js as shown above.

See packages/mcp-server/README.md for the full tool reference.

⌨️ Development

pnpm install                                              # install workspace deps
pnpm --filter @chanmeng666/femtech-radar-mcp test         # run tests (Vitest)
pnpm --filter @chanmeng666/femtech-radar-mcp build        # build with tsup

Project layout

packages/mcp-server/src/
├── schema.ts          # Zod RadarItem / WeeklyData (the shared data contract)
├── dedup.ts           # URL canonicalization + title-similarity dedupe
├── score.ts           # relevance × popularity × freshness scoring
├── adapters/          # one file per source (industry = Google News, research = arXiv, opportunities = LinkedIn/SerpAPI, discussions = HN)
├── collect.ts         # orchestration: adapter → dedupe → score → sort → since-filter
├── tools.ts           # radar_collect / radar_sources handlers
└── index.ts           # stdio MCP server entry

Adding a source adapter: implement the Adapter interface in adapters/, return RadarItem[] from collect(opts) using the injected fetcher (never call fetch directly — that keeps it testable), then wire it into ADAPTERS in collect.ts.

See AGENTS.md for AI-agent-oriented project conventions and gotchas.

🤝 Contributing

Contributions make the open-source community an amazing place to learn and create. Please read the Contributing Guide and the Code of Conduct before you start, and use the provided issue / pull-request templates.

❤️ Sponsor

If this project helps you, please consider supporting its development:

Sponsor on GitHub Buy Me a Coffee

For questions and help, see SUPPORT.md. For security issues, see SECURITY.md.

📄 License

This project is released under the MIT license.

🙋‍♀️ Author

Chan Meng

Email GitHub

<div align="right">

</div>

<!-- Link definitions --> [demo-link]: https://chanmeng666.github.io/femtech-radar/ [docs-link]: ./packages/mcp-server/README.md


<!-- CHAN MENG PERSONAL BRAND --> <div align="center"> <a href="https://github.com/ChanMeng666" target="_blank"> <img src="./.github/brand/chan-meng-logo.svg" alt="Chan Meng" width="160" /> </a>

<p><strong>Chan Meng</strong><br/>Need a custom app like this one? I build them — let's talk.</p>

<a href="mailto:chanmeng.dev@gmail.com"><img src="https://img.shields.io/badge/Email-chanmeng.dev@gmail.com-EA4335?style=flat-square&logo=gmail&logoColor=white" alt="Email Chan Meng"/></a> <a href="https://github.com/ChanMeng666"><img src="https://img.shields.io/badge/GitHub-ChanMeng666-181717?style=flat-square&logo=github&logoColor=white" alt="Chan Meng on GitHub"/></a> </div> <!-- /CHAN MENG PERSONAL BRAND -->

推荐服务器

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 模型以安全和受控的方式获取实时的网络信息。

官方
精选