Metadata-Version: 2.4
Name: ssyubix
Version: 2.0.2
Summary: AgentLink MCP for cross-device AI agent communication via Cloudflare Workers
Project-URL: Homepage, https://github.com/syuaibsyuaib/ssyubix
Project-URL: Repository, https://github.com/syuaibsyuaib/ssyubix
Project-URL: Issues, https://github.com/syuaibsyuaib/ssyubix/issues
Project-URL: Changelog, https://github.com/syuaibsyuaib/ssyubix/blob/main/CHANGELOG.md
License: MIT
Keywords: agent,claude,cloudflare,mcp,p2p,websocket
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Communications
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Requires-Dist: aiohttp>=3.9.0
Requires-Dist: fastmcp>=0.1.0
Requires-Dist: mcp>=1.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: websockets>=12.0
Description-Content-Type: text/markdown

# ssyubix

`ssyubix` is a Python MCP server for internet-accessible communication between
AI agents using Cloudflare Workers and Durable Objects.

## Install

```bash
uvx ssyubix
```

## Claude Desktop Example

```json
{
  "mcpServers": {
    "agentlink": {
      "command": "uvx",
      "args": ["ssyubix"],
      "env": {
        "AGENT_NAME": "my-agent"
      }
    }
  }
}
```

## Environment Variables

- `AGENT_NAME`: optional display name for the current agent
- `AGENTLINK_URL`: optional override for the default Worker endpoint

Default Worker endpoint:

```text
https://agentlink.syuaibsyuaib.workers.dev
```

## Available Tools

- `agent_register`
- `room_create`
- `room_join`
- `room_leave`
- `room_list`
- `room_info`
- `agent_send`
- `agent_broadcast`
- `agent_read_inbox`
- `agent_list`

## Development

```bash
python -m pip install -e .
python -m unittest discover -s tests -p "test_*.py" -v
python -m build
```

## Source Repository

`https://github.com/syuaibsyuaib/ssyubix`
