Metadata-Version: 2.4
Name: intermcp
Version: 0.2.0
Summary: Ultra-Fast, Safe Model Context Protocol (MCP) Python Client for InterMCP Trust Runtime
Author-email: Bharath B R <bharathcoorg7@gmail.com>
Project-URL: Homepage, https://github.com/Bharathcoorg/intermcp
Project-URL: Bug Tracker, https://github.com/Bharathcoorg/intermcp/issues
Keywords: mcp,model-context-protocol,ai,claude,cursor,agents,interlayer
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# 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)
```
