Metadata-Version: 2.2
Name: mcp-ghost
Version: 0.1.0
Summary: Intelligent MCP tool orchestration library with Claude Desktop-level capabilities
Author-email: June Kim <kim.june.01@gmail.com>
License: MIT
Keywords: mcp,llm,tool-orchestration,ai,automation,claude,openai,gemini
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mcp>=1.5.0
Requires-Dist: openai>=1.55.3
Requires-Dist: anthropic>=0.51.0
Requires-Dist: google-genai>=1.15.0
Requires-Dist: python-dotenv>=1.0.1
Requires-Dist: pydantic>=2.10.2
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.25.3; extra == "dev"
Requires-Dist: pytest-mock>=3.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Provides-Extra: testing
Requires-Dist: respx>=0.20.0; extra == "testing"
Requires-Dist: httpx>=0.25.0; extra == "testing"

# MCP-Ghost 👻

**Intelligent MCP tool orchestration library with Claude Desktop-level capabilities**

MCP-Ghost provides a programmatic interface for interacting with Model Context Protocol (MCP) servers through LLMs. Unlike CLI interfaces, MCP-Ghost accepts inputs directly from Python code and returns structured outputs with advanced tool orchestration features.

## ✨ Features

- 🔗 **Tool Chaining**: Automatically executes sequences of dependent tool calls
- 🔄 **Backtracking**: Retries failed operations with alternative approaches  
- 🧠 **Context Management**: Maintains conversation state across multiple tool interactions
- 🛠️ **Error Recovery**: Intelligent handling of tool failures with retry strategies
- 📊 **Result Synthesis**: Combines outputs from multiple tools into coherent responses

## 🎯 Supported Providers

- **OpenAI**: GPT-4o, GPT-4o-mini, GPT-4-turbo, GPT-3.5-turbo
- **Anthropic (Claude)**: Claude-4-opus, Claude-4-sonnet, Claude-3.7-sonnet, Claude-3.5-sonnet, Claude-3-opus, Claude-3-sonnet, Claude-3-haiku  
- **Google (Gemini)**: Gemini-2.5-pro, Gemini-2.5-flash, Gemini-2.0-flash, Gemini-1.5-pro, Gemini-1.5-flash

> **💡 Recommended Models**: For best **cost-performance balance**, use **Claude-4-sonnet**, **Gemini-2.5-flash**, or **GPT-4o-mini**. For **maximum capability** in complex tool orchestration, use **Claude-4-opus** or **Gemini-2.5-pro**.

## 📦 Installation

```bash
pip install mcp-ghost
```

## 🚀 Quick Start

```python
import asyncio
from mcp_ghost import mcp_ghost, MCPGhostConfig

async def main():
    # Option 1: Inline server config
    config = MCPGhostConfig(
        server_config={
            "mcpServers": {
                "sqlite": {
                    "command": "uvx",
                    "args": ["mcp-server-sqlite", "--db-path", "test.db"]
                }
            }
        },
        system_prompt="You are a helpful database assistant.",
        provider="openai",
        api_key="sk-...",
        user_prompt="List all tables and describe their schemas"
    )
    
    # Option 2: Load server config from file (Claude Desktop format)
    config = MCPGhostConfig(
        server_config="path/to/server_config.json",  # or dict as above
        system_prompt="You are a helpful database assistant.",
        provider="openai", 
        api_key="sk-...",
        user_prompt="List all tables and describe their schemas"
    )
    
    result = await mcp_ghost(config)
    print(f"Success: {result.success}")
    print(f"Summary: {result.summary}")
    print(f"Tool calls made: {len(result.tool_chain)}")

if __name__ == "__main__":
    asyncio.run(main())
```

## 🏗️ Architecture

MCP-Ghost is designed for use in larger architectures where:

1. **Human User** provides natural language input
2. **Prompt Builder** processes user input and ensures security constraints
3. **MCP-Ghost** executes the one-shot tool operation with intelligent orchestration
4. **Results** are returned for further processing

## 🔒 Security Model

- **Prompt Builder Responsibility**: Input validation and security filtering
- **MCP Server Trust**: Trusts provided MCP servers completely  
- **Stdio Isolation**: Each MCP server runs in its own subprocess
- **Timeout Protection**: Tool execution timeouts prevent hanging operations

## 📖 Documentation

- [Requirements Specification](docs/requirements.md)
- [API Reference](docs/api.md)
- [Examples](examples/)
- [Testing Guide](docs/testing.md)

## 🧪 Testing

MCP-Ghost uses a focused core test suite for fast, reliable development:

```bash
# Run core functionality tests (recommended)
make test

# Run all tests (requires external dependencies)
make test-all

# Record new golden tests (requires API keys)
pytest -m record_golden
```

The core test suite (145 tests) runs in ~1 second and covers all essential functionality without external dependencies.

## 🤝 Contributing

1. Fork the repository
2. Create a feature branch
3. Add tests (including golden tests for new features)
4. Submit a pull request

## 📄 License

MIT License - see [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

Built on top of:
- [Official MCP Python SDK](https://github.com/modelcontextprotocol/python-sdk) - Model Context Protocol implementation
