Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ A complete NATS-based messaging system for AI agents with MCP (Model Context Pro
pip install -r requirements.txt
```

or use a virtual environment (we'll call ours `myvenv`)

```bash
python3 -m venv myvenv
source myvenv/bin/activate
pip install -r requirements.txt
```


### 2. Configure NATS

Set your NATS server URL:
Expand All @@ -34,14 +43,32 @@ export NATS_NAMESPACE="my-project" # Optional, defaults to 'themultiverse'
python start_agents.py
```

or if using a virtual environment, ensure to first activate it if you haven't already

```bash
source myvenv/bin/activate
python start_agents.py
```

### 4. Start the Web UI (Optional)

```bash
python agent_messaging_web.py
```

or if using a virtual environment, ensure to first activate it if you haven't already

```bash
source myvenv/bin/activate
python agent_messaging_web.py
```

Open http://localhost:5002

It should look something like:

![screenshot example of UI](ui-example.png?raw=true "UI Example")

### 5. Use with Claude Code

The MCP server is pre-configured. Just use the tools:
Expand Down
Loading