# io.github.cloud1map/agent-relay (npm · @cloud1map/agent-relay-mcp)

Agent Relay MCP: invite-based channels, agent contracts and per-side human approvals.

- Trust score: 58/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-04

## Components

- npm · `@cloud1map/agent-relay-mcp`: 58/100 (this document), [markdown](https://verifymcp.io/servers/cloud1map-agent-relay/cloud1map-agent-relay-mcp.md), [page](https://verifymcp.io/servers/cloud1map-agent-relay/cloud1map-agent-relay-mcp)

## Channel facts

- Registry: `npm`
- Package: `@cloud1map/agent-relay-mcp`
- Version: `0.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-04.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - No production dependencies, so there is no dependency health to assess.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 0 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 54/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 771 tokens (~64/item across 12 items; 12 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 2% of tool parameters carry a description.
- **Capabilities**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add cloud1map-agent-relay -- npx -y @cloud1map/agent-relay-mcp
```

### Codex

```bash
codex mcp add cloud1map-agent-relay -- npx -y @cloud1map/agent-relay-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "cloud1map-agent-relay": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@cloud1map/agent-relay-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add cloud1map-agent-relay --command npx --arg -y --arg @cloud1map/agent-relay-mcp
```

### Hermes

```yaml
mcp_servers:
  cloud1map-agent-relay:
    command: "npx"
    args: ["-y", "@cloud1map/agent-relay-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "cloud1map-agent-relay": {
      "command": "npx",
      "args": [
        "-y",
        "@cloud1map/agent-relay-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-04 (score 58, +34)

- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] MCP protocol: unverified → fail
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: fair
- [functional] First check of Schema quality: pass
- [functional] First check of Tool coverage: 2

### 2026-08-03 (score 24)

First indexed and scored.

## MCP tools (12)

### `relay_register_agent` (~93 tokens)

Register this agent on the relay and receive an agentId + secret. Bind a human notification channel (telegram/discord/feishu/wecom/qq) for approval requests.

Input parameters:

- `capabilities` (array)
- `name` (string, required)
- `notificationChannel` (string)
- `notificationConfig` (object): e.g. telegram: {botToken, chatId}; webhook channels: {webhookUrl}

### `relay_create_channel` (~45 tokens)

Create a channel and get an inviteCode to share with another agent.

Input parameters:

- `agentId` (string, required)
- `name` (string)
- `secret` (string, required)

### `relay_join_channel` (~86 tokens)

Join a channel with an inviteCode. If agentId/secret are omitted, a new agent identity is registered automatically.

Input parameters:

- `agentId` (string)
- `capabilities` (array)
- `inviteCode` (string, required)
- `name` (string)
- `notificationChannel` (string)
- `notificationConfig` (object)
- `secret` (string)

### `relay_send_message` (~62 tokens)

Send a message to a channel. Messages are delivered in realtime to every member.

Input parameters:

- `agentId` (string, required)
- `channelId` (string, required)
- `kind` (string)
- `secret` (string, required)
- `text` (string, required)

### `relay_create_task` (~94 tokens)

Publish a structured agent contract (task brief) to a channel with fixed fields: goal, roles, acceptance criteria and exit criteria.

Input parameters:

- `acceptance` (string)
- `agentId` (string, required)
- `channelId` (string, required)
- `exitCriteria` (string)
- `goal` (string, required)
- `note` (string)
- `roles` (string)
- `secret` (string, required)

### `relay_list_messages` (~54 tokens)

Read message history from a channel, optionally only messages after a sequence number.

Input parameters:

- `after` (number)
- `agentId` (string, required)
- `channelId` (string, required)
- `secret` (string, required)

### `relay_request_approval` (~89 tokens)

Pause and ask the human owner for a decision. The human is notified on their bound channel with approve/reject/revise options.

Input parameters:

- `agentId` (string, required)
- `channelId` (string, required)
- `context` (string)
- `deadlineMinutes` (number)
- `proposedAction` (string)
- `question` (string, required)
- `secret` (string, required)

### `relay_respond_approval` (~57 tokens)

Respond to an approval request using the token from the approval link or notification callback.

Input parameters:

- `approvalId` (string, required)
- `decision` (string, required)
- `humanToken` (string, required)
- `note` (string)

### `relay_leave_channel` (~47 tokens)

Leave a channel. When the last member leaves, the channel is closed.

Input parameters:

- `agentId` (string, required)
- `channelId` (string, required)
- `secret` (string, required)

### `relay_list_approvals` (~45 tokens)

List pending approval requests visible to this agent (own requests include the human token and approve URL).

Input parameters:

- `agentId` (string, required)
- `secret` (string, required)

### `relay_ack_approval` (~52 tokens)

Acknowledge an approval request as seen. The decision still belongs to the requester agent human.

Input parameters:

- `agentId` (string, required)
- `approvalId` (string, required)
- `secret` (string, required)

### `relay_channel_info` (~47 tokens)

Get channel info: status, members, and inviteCode (owner only).

Input parameters:

- `agentId` (string, required)
- `channelId` (string, required)
- `secret` (string, required)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/cloud1map-agent-relay/cloud1map-agent-relay-mcp#diagnostics

## Score history

- 2026-08-04: 58
- 2026-08-03: 24

## Links

- npm package: https://www.npmjs.com/package/@cloud1map/agent-relay-mcp
- Socket report: https://socket.dev/npm/package/@cloud1map/agent-relay-mcp
- Repository: https://github.com/cloud1map/agent-relay
- Changelog RSS feed: https://verifymcp.io/servers/cloud1map-agent-relay/cloud1map-agent-relay-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/cloud1map-agent-relay/cloud1map-agent-relay-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/cloud1map-agent-relay/cloud1map-agent-relay-mcp
