intermcp 0.2.1

Ultra-fast, safe Model Context Protocol (MCP) engine and multiplexing hub in pure Rust, built for Interlayer Blockchain and open for all
Documentation
# InterMCP Python Client

Official Python Client for **InterMCP** — Ultra-Fast, Safe Model Context Protocol (MCP) Runtime.

## Installation

```bash
pip install intermcp
```

## Quickstart

```python
from intermcp import InterMcpClient

with InterMcpClient() as client:
    # Query registered tools
    tools = client.list_tools()
    print("Available tools:", [t["name"] for t in tools])

    # Call a tool with sub-microsecond latency
    info = client.call_tool("system_info", {})
    print(info)
```