├── .env.example ├── .gitignore ├── AGENT-MODE.md ├── CONTRIBUTING.md ├── License.md ├── QUICK-START.md ├── README.md ├── SETUP-V3.md ├── license ├── package.json ├── src ├── google-search-v2.ts ├── google-search-v3.ts ├── mcp.d.ts ├── services │ ├── content-extractor.service.ts │ ├── deduplication.service.ts │ ├── google-search.service.ts │ ├── research-synthesis.service.ts │ └── source-quality.service.ts └── types.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENT-MODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/AGENT-MODE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- 1 | License: 2 | 3 | Free for non commercial use. 4 | -------------------------------------------------------------------------------- /QUICK-START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/QUICK-START.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/README.md -------------------------------------------------------------------------------- /SETUP-V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/SETUP-V3.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/package.json -------------------------------------------------------------------------------- /src/google-search-v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/src/google-search-v2.ts -------------------------------------------------------------------------------- /src/google-search-v3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/src/google-search-v3.ts -------------------------------------------------------------------------------- /src/mcp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/src/mcp.d.ts -------------------------------------------------------------------------------- /src/services/content-extractor.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/src/services/content-extractor.service.ts -------------------------------------------------------------------------------- /src/services/deduplication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/src/services/deduplication.service.ts -------------------------------------------------------------------------------- /src/services/google-search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/src/services/google-search.service.ts -------------------------------------------------------------------------------- /src/services/research-synthesis.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/src/services/research-synthesis.service.ts -------------------------------------------------------------------------------- /src/services/source-quality.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/src/services/source-quality.service.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mixelpixx/Google-Search-MCP-Server/HEAD/tsconfig.json --------------------------------------------------------------------------------