New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@chanmeng666/femtech-radar-mcp

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chanmeng666/femtech-radar-mcp

MCP server that fetches, dedupes, and scores FemTech industry & research items.

latest
Source
npmnpm
Version
0.4.1
Version published
Maintainers
1
Created
Source

@chanmeng666/femtech-radar-mcp

An MCP (Model Context Protocol) server that fetches, deduplicates, and scores FemTech industry news and research items from public sources — ready to plug into any MCP-compatible AI client.

Installation

No global install required. Run directly with npx:

npx @chanmeng666/femtech-radar-mcp

Requires Node.js >= 20.

Usage with GitHub Actions Workflow (gh aw)

Add the following to your mcp.json or mcp-servers block:

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

Usage with Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

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

Tools

radar_collect

Fetch, deduplicate, and score FemTech items for a given section and time window.

ParameterTypeRequiredDescription
sectionstringYesOne of "industry", "research", "opportunities", "discussions". In v1 only industry and research have adapters; opportunities and discussions are valid values but return empty results with a "no adapter" warning until a later version.
sincestringNoISO 8601 date string. Defaults to 7 days ago.
limitnumberNoMaximum items to return. Defaults to 15.

Returns: { items: RadarItem[], warnings: string[] }

Each RadarItem has: id, section, title, url, source, summary, score (0–100), published_at. The raw_metrics field (points, comments, citations) is defined in the schema but is not populated in v1popularity is always 0 and raw_metrics is omitted from returned items.

Example prompt:

"Call radar_collect with section=industry to get the latest FemTech industry news."

radar_sources

List all configured data sources grouped by section.

No parameters required.

Returns: Array<{ section: string, sources: string[] }>

Example prompt:

"Call radar_sources to see which data sources the radar monitors."

Data Sources (v1)

SectionSources
industryGoogle News (RSS search)
researcharXiv API (femtech / women's-health / maternal query)

License

MIT

Keywords

mcp

FAQs

Package last updated on 05 Jul 2026

Related posts