Metadata-Version: 2.4
Name: zmcp
Version: 0.1.0
Summary: Full-Stack AI Framework For Building Enterprise AI Applications
Project-URL: Homepage, https://zpkg.ai
Project-URL: Documentation, https://zmcp-python.zpkg.ai
Project-URL: Repository, https://github.com/octallium/zmcp-python
Project-URL: Bug Reports, https://github.com/octallium/zmcp-python/issues
Project-URL: Changelog, https://github.com/octallium/zmcp-python/blob/main/CHANGELOG.md
Author: Octallium Inc
Maintainer: Octallium Inc
License: MIT
License-File: LICENSE
Keywords: agentic,agents,ai,automation,enterprise,framework,infrastructure,llm,orchestration,workflow
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Distributed Computing
Requires-Python: >=3.12
Provides-Extra: dev
Requires-Dist: black>=23.0; extra == 'dev'
Requires-Dist: mypy>=1.5; extra == 'dev'
Requires-Dist: pre-commit>=3.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1; extra == 'dev'
Description-Content-Type: text/markdown

# ZMCP - Full-Stack AI Framework

> **⚠️ Early Development Notice**: This is a placeholder release to secure the package namespace. The full implementation is coming soon!

## 🎯 **What is ZMCP?**

ZMCP (Zorg Meta Computing Protocol) is a full-stack AI framework for building enterprise AI applications. It provides developers with a unified, fluent API for creating everything from simple chatbots to complex multi-agent workflows.

**Key Features (Coming Soon):**

- 🤖 **Multi-Agent Orchestration**: Coordinate multiple AI agents seamlessly
- 🛠️ **Rich Tool Ecosystem**: Built-in and custom tools with type safety
- 🌐 **Web Framework Integration**: FastAPI, Flask, Django adapters
- 🔗 **MCP Protocol Support**: Connect to the Model Context Protocol ecosystem
- 💾 **Persistent State Management**: Robust context and memory systems
- ⚡ **Progressive Complexity**: Start simple, scale to enterprise

## 🚀 **Quick Start (Placeholder)**

```bash
pip install zmcp
```

```python
from zmcp import workflow, agent, tool, Context

# This is a placeholder - full API coming soon!
@tool("calculator")
def calculate(expression: str) -> float:
    return eval(expression)

@agent("assistant")
def chat_agent(ctx: Context) -> Context:
    return ctx.set("response", "Hello from ZMCP!")

pipeline = (workflow("hello_world")
           .start_with("chat")
           .agent("chat", chat_agent)
           .build())

result = pipeline.run(Context(message="Hello"))
print(result.get("response"))  # "Hello from ZMCP!"
```

## 📋 Roadmap

Q3 2024: Core framework implementation
Q4 2024: Web integration and MCP support
Q1 2025: Enterprise features and scaling

## 🏢 About Octallium

ZMCP is developed by Octallium Inc, building infrastructure for humanity's next computing paradigm.
📚 Links

Documentation: <https://zmcp-python.zpkg.ai> (coming soon)
Community: <https://zpkg.ai> (coming soon)
GitHub: <https://github.com/octallium/zmcp-python>
Issues: <https://github.com/octallium/zmcp-python/issues>

📄 License
MIT License - see LICENSE file for details.

Stay tuned for the full release! 🚀
