We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/capyBearista/gemini-researcher'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "gemini-researcher",
"version": "1.1.1",
"mcpName": "io.github.capyBearista/gemini-researcher",
"description": "Stateless MCP server that proxies research queries to Gemini CLI, reducing agent context/model usage",
"type": "module",
"main": "dist/index.js",
"bin": {
"gemini-researcher": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "tsc --noEmit",
"test": "node --import tsx --test tests/**/*.test.ts",
"test:unit": "node --import tsx --test tests/unit/**/*.test.ts",
"test:integration": "node --import tsx --test tests/integration/**/*.test.ts",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"gemini",
"gemini-cli",
"ai",
"llm",
"research",
"proxy",
"agent",
"copilot",
"claude"
],
"author": "capyBearista",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/capyBearista/gemini-researcher.git"
},
"bugs": {
"url": "https://github.com/capyBearista/gemini-researcher/issues"
},
"homepage": "https://github.com/capyBearista/gemini-researcher#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"ignore": "^5.3.0",
"zod": "^3.22.0",
"zod-to-json-schema": "^3.24.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.21.0",
"typescript": "^5.0.0"
}
}