The prism, wired into your agent. Trendchaser MCP exposes the Trendchaser AI/Dev trend feed — four curated briefs a day — to LLM agents over the Model Context Protocol. Read-only, no API key, no scraping.
Tools
| Tool | What it does |
|---|---|
trendchaser_list_briefs |
List recent brief slots (newest first) with topic headlines |
trendchaser_get_brief |
Full content of one slot — bodies, sources, 6-axis scores |
trendchaser_search_trends |
Search every topic by keyword (ko/en) + source/date/score filters |
trendchaser_get_topic |
Resolve a deep-link anchor (e.g. 2026-06-16-evening--1) to its full topic |
Highlights
- stdio server, distributable via
npx github:TaewoooPark/Trendchaser-mcp— no install step. - Good upstream citizen: one cached
/api/briefspull serves every call; refreshes revalidate withIf-None-Match(unchanged →304, no body); stale-on-error fallback. - Read-only by construction: no secrets, no write paths; everything returned is already public on taewoopark.com/trendchaser.
- Typed & validated: TypeScript (strict) + Zod input/output schemas + tool annotations.
- English + Korean READMEs.
Install (Claude Desktop / Claude Code)
{
"mcpServers": {
"trendchaser": {
"command": "npx",
"args": ["-y", "github:TaewoooPark/Trendchaser-mcp"]
}
}
}Or: claude mcp add trendchaser -- npx -y github:TaewoooPark/Trendchaser-mcp
Configuration (optional env)
TRENDCHASER_API_URL · TRENDCHASER_CACHE_TTL (default 1800s) · TRENDCHASER_TIMEOUT (default 20000ms)