Skip to main content

AI coaching system with multiple expert agents

Project description

ME2AI MCP - Enhanced Model Context Protocol Framework

The ME2AI MCP package extends the official MCP (Model Context Protocol) package with enhanced functionality for building robust MCP servers with standardized patterns, tools, and utilities.

Overview

This framework provides a consistent foundation for all ME2AI MCP server implementations with improved error handling, logging, and statistics tracking. All ME2AI services should use this package as a foundation for their MCP implementations.

Features

  • Enhanced Base Classes: ME2AIMCPServer with built-in logging, error handling, and statistics tracking
  • Improved Tool Registration: register_tool decorator with automatic error handling
  • Authentication System: API Key and Token authentication with environment variable support
  • Built-in Utilities: Text sanitization, response formatting, HTML processing
  • Standardized Patterns: Consistent response structures and error formats

Installation

# Install from PyPI (recommended)
pip install me2ai_mcp

# Install with all optional dependencies
pip install me2ai_mcp[all]

# Install with specific feature set
pip install me2ai_mcp[web]

Alternatively, install directly from GitHub:

# Install from GitHub
pip install git+https://github.com/achimdehnert/me2ai_mcp.git

See INSTALLATION.md for detailed installation options.

Quick Start

from me2ai_mcp.base import ME2AIMCPServer

# Create a new MCP server
server = ME2AIMCPServer(
    server_name="my_server",
    description="Example ME2AI MCP Server",
    version="1.0.0"
)

# Register a tool
@server.register_tool
def process_data(input_text: str):
    """Process input data and return results."""
    return {
        "processed": input_text.upper(),
        "length": len(input_text)
    }

# Execute the tool
result = server.execute_tool("process_data", {"input_text": "hello world"})
print(result)  # {'processed': 'HELLO WORLD', 'length': 11}

Core Components

Base Server

The ME2AIMCPServer class provides the foundation for all ME2AI MCP servers with:

  • Automatic tool registration and discovery
  • Consistent error handling and logging
  • Tool execution statistics tracking
  • Standard response formatting

Authentication

The AuthManager class provides standardized authentication handling:

  • Environment variable based token management
  • Support for multiple token sources
  • Token validation and verification

Tools

Pre-built tools for common operations:

  • Web content fetching and HTML parsing
  • File system operations
  • GitHub repository operations

Examples

See the examples/ directory for detailed implementation examples:

  • basic_server.py - Simple MCP server implementation
  • github_mcp_server.py - GitHub integration example

Testing

Run the comprehensive test suite:

# Run all tests
python -m pytest

# Run with coverage report
python -m pytest --cov=me2ai_mcp

Development

  1. Clone the repository
  2. Install development dependencies: pip install -e ".[dev]"
  3. Run tests: pytest
  4. Follow ME2AI coding standards for contributions

Documentation

For detailed documentation on components and usage, see the docstrings in the code.

License

MIT License

Contact

LLM Providers

  • OpenAI: Utilizing GPT models for advanced language understanding
  • Groq: High-performance inference with Mixtral-8x7b model
  • Anthropic: Claude models for enhanced reasoning capabilities

Expert Agents

German Professor

  • Language learning and cultural guidance
  • Tools:
    • German dictionary lookup
    • Grammar checking
    • Text translation
    • Cultural research

Dating Expert

  • Relationship advice and interpersonal skills
  • Tools:
    • Dating profile analysis
    • Conversation pattern evaluation
    • Relationship research

SEO Expert

  • Search engine optimization strategies
  • Tools:
    • Website SEO analysis
    • Keyword research
    • Competition analysis

Researcher

  • Academic research and analysis
  • Tools:
    • Comprehensive search (Web, Wikipedia, Academic papers)
    • Data analysis with Python
    • Citation generation
    • Research summarization

Life Coach

  • Personal development and goal setting
  • Tools:
    • Goal setting templates
    • Mindfulness exercises
    • Progress tracking

Moderator

  • Conversation management and guidance
  • Tools:
    • Conversation flow management
    • Topic suggestion
    • Conflict resolution

System Features

  • Enhanced Memory Management: Persistent conversation history for contextual responses
  • Interactive CLI: User-friendly command-line interface
  • Flexible Architecture: Easily extensible for new agents and tools
  • Automatic Routing: Smart query routing to the most appropriate expert
  • Comprehensive Testing: Unit, integration, performance, and load tests

Installation

Basic Installation

pip install -e .

Development Installation

pip install -e ".[dev]"

Environment Setup

Create a .env file in the project root with your API keys:

OPENAI_API_KEY=your_openai_key
GROQ_API_KEY=your_groq_key
ANTHROPIC_API_KEY=your_anthropic_key

Usage

Starting the CLI

python -m me2ai

Available Commands

  • talk <message>: Send a message to the current agent
  • switch <agent>: Switch to a different agent
  • auto <message>: Let the router automatically select the best expert
  • list: Show available agents
  • clear: Clear conversation history
  • help: Show help message
  • quit: Exit the program

Example Interactions

Automatic Expert Selection

You> auto How do I optimize my website for search engines?
Routing your question...
Selected expert: SEO Expert
Reason: Query relates to website optimization

SEO Expert: Let me analyze your website's SEO factors...
[Uses SEO analysis tools to provide recommendations]

Research Query

You> auto What are the latest developments in quantum computing?
Routing your question...
Selected expert: Researcher
Reason: Query requires academic research

Researcher: Let me research this comprehensively...
[Uses multiple research tools to provide cited findings]

Development

Project Structure

me2ai/
├── agents/             # Agent implementations
│   ├── base.py        # Base agent interface
│   ├── coaching_agents.py
│   ├── expert_agents.py
│   ├── routing_agent.py
│   └── factory.py
├── tools/             # Specialized tools
│   ├── web_tools.py
│   ├── language_tools.py
│   ├── dating_tools.py
│   └── research_tools.py
├── llms/              # LLM providers
│   ├── base.py
│   ├── openai_provider.py
│   ├── groq_provider.py
│   └── anthropic_provider.py
├── tests/             # Test suite
└── cli.py            # CLI implementation

Adding New Tools

  1. Create a new tool class implementing the Tool protocol
  2. Add tool-specific dependencies to pyproject.toml
  3. Update relevant agent to use the new tool

Adding New Agents

  1. Create a new agent class inheriting from BaseAgent
  2. Add agent-specific tools and system prompt
  3. Update factory.py to support the new agent
  4. Update router agent to recognize the new expertise

Running Tests

Basic Test Suite

pytest tests/ -v

With Coverage Report

pytest tests/ -v --cov=. --cov-report=html

Specific Test Categories

# Run only integration tests
pytest tests/ -m integration

# Run only performance tests
pytest tests/ -m performance

# Run only load tests
pytest tests/ -m load

# Run only slow tests
pytest tests/ -m slow

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Run the test suite
  5. Submit a pull request

Code Quality Standards

  • Use type hints
  • Follow Google style docstrings
  • Maintain test coverage
  • Keep code modular and extensible

Current Development Status

Test Status (as of 2024-12-22)

  • ✅ CLI Tests: All 19 tests passing
  • ❌ Load Tests: 4 tests failing
    • test_moderate_load
    • test_heavy_load
    • test_mixed_agent_load
    • test_memory_load

Recent Changes

  1. Agent Initialization

    • Fixed agent initialization to properly handle system prompts and roles
    • Implemented memory management in expert agents
    • Added proper async support for agent responses
  2. Expert Agent Updates

    • German Professor: Enhanced language learning capabilities
    • Dating Expert: Improved relationship advice system
    • SEO Expert: Added technical SEO analysis tools
  3. Code Quality

    • Current test coverage: 37%
    • Improved error handling in agent factory
    • Enhanced async/await patterns in CLI

Known Issues

  1. Load Tests

    • Memory initialization issues in load tests
    • Need to improve async handling in high-load scenarios
  2. Performance

    • Some response delays under heavy load
    • Memory usage optimization needed

Next Steps

  1. Fix load test failures
  2. Improve test coverage
  3. Optimize memory management
  4. Enhance error handling

License

MIT License - See LICENSE file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

me2ai_mcp-0.0.6.tar.gz (370.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

me2ai_mcp-0.0.6-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file me2ai_mcp-0.0.6.tar.gz.

File metadata

  • Download URL: me2ai_mcp-0.0.6.tar.gz
  • Upload date:
  • Size: 370.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for me2ai_mcp-0.0.6.tar.gz
Algorithm Hash digest
SHA256 75336ad8e40e9507d51b39e8abcd89382c2f0243b11755566c336d48420e065b
MD5 db13928ddba59a1f669ea0d0a215c91f
BLAKE2b-256 3cb459ebdd6dcb56189d36aad109508ed1cb0e1ec4ac8099e6bd89d3392e1f0e

See more details on using hashes here.

File details

Details for the file me2ai_mcp-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: me2ai_mcp-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for me2ai_mcp-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 ff63d4fae1f322afd5df006102bad092ed0a408909b4d29bf9ae9aec30deca54
MD5 98157b723a4ccd260cd69e8884755953
BLAKE2b-256 6c1433048da603249e7837cbf2c121e899568ee11310be283ff4c31540554055

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page