__init__.pyโข556 B
"""
Llama 4 Maverick MCP Server - Python Implementation
Author: Yobie Benjamin
Version: 0.9
Date: August 1, 2025
A Python-based Model Context Protocol (MCP) server that bridges Llama models
with Claude Desktop through Ollama. This package provides comprehensive tools,
prompts, and resources for AI-powered interactions.
"""
__version__ = "0.9.0"
__author__ = "Yobie Benjamin"
__date__ = "August 1, 2025"
from .server import MCPServer
from .config import Config
from .llama_service import LlamaService
__all__ = ["MCPServer", "Config", "LlamaService"]