├── .changeset └── config.json ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── assets ├── case-dark.png └── case-light.png ├── biome.json ├── lefthook.yml ├── package.json ├── pnpm-lock.yaml ├── rslib.config.ts ├── scripts └── readme.ts ├── smithery.yaml ├── src ├── env.d.ts ├── index.ts ├── tools │ ├── $custom-rss.ts │ ├── 36kr.ts │ ├── 9to5mac.ts │ ├── bbc.ts │ ├── bilibili.ts │ ├── douban.ts │ ├── douyin.ts │ ├── gcores.ts │ ├── ifanr.ts │ ├── infoq.ts │ ├── juejin.ts │ ├── netease-news.ts │ ├── nytimes.ts │ ├── smzdm.ts │ ├── sspai.ts │ ├── tencent-news.ts │ ├── thepaper.ts │ ├── theverge.ts │ ├── toutiao.ts │ ├── weibo.ts │ ├── weread.ts │ └── zhihu.ts ├── types.ts └── utils │ ├── cache.ts │ ├── dayjs.ts │ ├── http.ts │ ├── index.ts │ ├── logger.ts │ └── rss.ts ├── tests └── index.test.ts ├── tsconfig.json └── vitest.config.ts /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | side-effects-cache = false -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/README.md -------------------------------------------------------------------------------- /assets/case-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/assets/case-dark.png -------------------------------------------------------------------------------- /assets/case-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/assets/case-light.png -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/biome.json -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rslib.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/rslib.config.ts -------------------------------------------------------------------------------- /scripts/readme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/scripts/readme.ts -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tools/$custom-rss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/$custom-rss.ts -------------------------------------------------------------------------------- /src/tools/36kr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/36kr.ts -------------------------------------------------------------------------------- /src/tools/9to5mac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/9to5mac.ts -------------------------------------------------------------------------------- /src/tools/bbc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/bbc.ts -------------------------------------------------------------------------------- /src/tools/bilibili.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/bilibili.ts -------------------------------------------------------------------------------- /src/tools/douban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/douban.ts -------------------------------------------------------------------------------- /src/tools/douyin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/douyin.ts -------------------------------------------------------------------------------- /src/tools/gcores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/gcores.ts -------------------------------------------------------------------------------- /src/tools/ifanr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/ifanr.ts -------------------------------------------------------------------------------- /src/tools/infoq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/infoq.ts -------------------------------------------------------------------------------- /src/tools/juejin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/juejin.ts -------------------------------------------------------------------------------- /src/tools/netease-news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/netease-news.ts -------------------------------------------------------------------------------- /src/tools/nytimes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/nytimes.ts -------------------------------------------------------------------------------- /src/tools/smzdm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/smzdm.ts -------------------------------------------------------------------------------- /src/tools/sspai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/sspai.ts -------------------------------------------------------------------------------- /src/tools/tencent-news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/tencent-news.ts -------------------------------------------------------------------------------- /src/tools/thepaper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/thepaper.ts -------------------------------------------------------------------------------- /src/tools/theverge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/theverge.ts -------------------------------------------------------------------------------- /src/tools/toutiao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/toutiao.ts -------------------------------------------------------------------------------- /src/tools/weibo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/weibo.ts -------------------------------------------------------------------------------- /src/tools/weread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/weread.ts -------------------------------------------------------------------------------- /src/tools/zhihu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/tools/zhihu.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/utils/cache.ts -------------------------------------------------------------------------------- /src/utils/dayjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/utils/dayjs.ts -------------------------------------------------------------------------------- /src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/utils/http.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/rss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/src/utils/rss.ts -------------------------------------------------------------------------------- /tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/tests/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baranwang/mcp-trends-hub/HEAD/vitest.config.ts --------------------------------------------------------------------------------