├── .env.example ├── .gitattributes ├── .github ├── FUNDING.yml ├── robots.txt └── workflows │ └── update-license-year.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── google-news-server.mcpb ├── llms.txt ├── manifest.json ├── package.json ├── public └── server-google-news.svg ├── renovate.json ├── smithery.yaml ├── src ├── evals │ └── evals.ts ├── geo-metrics.ts ├── index.ts └── types.ts ├── structured-data.json └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | SERP_API_KEY=your_serp_api_key_here -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/.github/robots.txt -------------------------------------------------------------------------------- /.github/workflows/update-license-year.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/.github/workflows/update-license-year.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/README.md -------------------------------------------------------------------------------- /google-news-server.mcpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/google-news-server.mcpb -------------------------------------------------------------------------------- /llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/llms.txt -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/package.json -------------------------------------------------------------------------------- /public/server-google-news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/public/server-google-news.svg -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/renovate.json -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/evals/evals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/src/evals/evals.ts -------------------------------------------------------------------------------- /src/geo-metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/src/geo-metrics.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/src/types.ts -------------------------------------------------------------------------------- /structured-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/structured-data.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanMeng666/server-google-news/HEAD/tsconfig.json --------------------------------------------------------------------------------