Metadata-Version: 2.4
Name: multify-mcp
Version: 0.1.2
Summary: Hosted Multify MCP server for workspace operations.
Project-URL: Homepage, https://multifyco.com
Project-URL: Documentation, https://multifyco.com
Author-email: Multify <info@multifyco.com>
Requires-Python: >=3.12
Requires-Dist: httpx>=0.28.1
Requires-Dist: mcp[cli]>=1.18.0
Requires-Dist: pydantic-settings>=2.11.0
Requires-Dist: pydantic>=2.11.7
Requires-Dist: starlette>=0.47.3
Requires-Dist: uvicorn>=0.35.0
Description-Content-Type: text/markdown

# multify-mcp

Hosted Multify MCP runtime package.

This package is the Python runtime behind the single hosted Multify MCP product. Users should think about it as one MCP server, not as separate contacts/lists MCPs or separate Python packages.

This hosted MCP is client-agnostic. Any remote MCP client that supports HTTP should connect with the same endpoint and the same workspace MCP key.

## Install

```bash
pip install multify-mcp
```

## Hosted usage

Hosted endpoint:

```text
https://api.multifyco.com/mcp
```

Auth header:

```text
Authorization: Bearer YOUR_MULTIFY_MCP_KEY
```

Python helper example:

```python
from multify_mcp import build_remote_mcp_connection

connection = build_remote_mcp_connection("YOUR_MULTIFY_MCP_KEY")

print(connection.url)
print(connection.headers["Authorization"])
print(connection.as_dict())
```

Claude Code example:

```bash
claude mcp add --transport http multify-mcp https://api.multifyco.com/mcp \
  --header "Authorization: Bearer YOUR_MULTIFY_MCP_KEY"
```

The hosted endpoint is fixed on the Multify API host and the user-specific input is only the workspace MCP key.
