Metadata-Version: 2.4
Name: mcpos-lib
Version: 0.1.1
Summary: MCPOS — Model Context Protocol Operational System
Author: Massiron
License-Expression: MIT
Project-URL: Homepage, https://github.com/massiron/mcpos
Keywords: mcp,model-context-protocol,operational-system
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# mcpos

**MCPOS — Model Context Protocol Operational System**

A Python operational system for Model Context Protocol (MCP) servers.

## Features

- **MCPSystem** — orchestrate multiple MCP servers
- **Transport** — pluggable transport layer (stdio, HTTP, WebSocket)
- **Permissions** — policy-based access control with audit logging
- **Heartbeat** — monitor server health
- **Router** — route requests across servers

## Install

```bash
pip install mcpos
```

## Quick Start

```python
from mcpos import MCPSystem, MCPServer, ServerConfig

system = MCPSystem()
server = MCPServer(ServerConfig(name="my-server", command="python -m my_mcp"))
system.add_server(server)
await system.start()
```

## License

MIT
