We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IliaLarchenko/robot_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•382 B
"""
LLM Provider Package
Provides native API integrations for Claude (Anthropic) and Gemini (Google GenAI).
Supports streaming, thinking, tool calling, and multimodal capabilities.
"""
from .factory import create_llm_provider
from .base_provider import LLMResponse
__all__ = ['create_llm_provider', 'LLMResponse']
# This file makes the llm_providers directory a Python package.