Skip to main content
Glama

Gemini MCP Server

__init__.pyโ€ข780 B
"""Parser registry for clink.""" from __future__ import annotations from .base import BaseParser, ParsedCLIResponse, ParserError from .claude import ClaudeJSONParser from .codex import CodexJSONLParser from .gemini import GeminiJSONParser _PARSER_CLASSES: dict[str, type[BaseParser]] = { CodexJSONLParser.name: CodexJSONLParser, GeminiJSONParser.name: GeminiJSONParser, ClaudeJSONParser.name: ClaudeJSONParser, } def get_parser(name: str) -> BaseParser: normalized = (name or "").lower() if normalized not in _PARSER_CLASSES: raise ParserError(f"No parser registered for '{name}'") parser_cls = _PARSER_CLASSES[normalized] return parser_cls() __all__ = [ "BaseParser", "ParsedCLIResponse", "ParserError", "get_parser", ]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/BeehiveInnovations/gemini-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server