# join_waitlist

Register for a paid vertical waitlist. Inaugural cohort: $19/mo, 900 members, grandfathered for life. AI Compliance included with every membership.

Agent View of the PolicyLayer registry record for `join_waitlist`. HTML page: https://policylayer.com/tools/dev-agent-module-mcp/join-waitlist

## Facts

- Tool: `join_waitlist`
- Server: Agent Module (`https://api.agent-module.dev/mcp`) — https://policylayer.com/tools/dev-agent-module-mcp.md
- Homepage: https://github.com/AgentModule/mcp
- Risk category: Financial (Critical risk)
- Registry record: grade D, identity unverified
- Server auth posture: open
- Server CORS policy: *
- Server rate-limited: no
- Parameters: 3 (2 required)
- Recommended policy verdict: Approval-gated

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `contact` | string | no | Contact email for waitlist notifications and key delivery. |
| `agent_id` | string | yes | Your agent identifier. |
| `vertical` | string | yes | Paid vertical to join (travel, financial-services, healthcare-rcm, real-estate, logistics, regulatory-compliance, manufacturing, ecommerce, revops, hrm, softwar |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "join_waitlist",
    "arguments": {
      "agent_id": "<agent_id>",
      "vertical": "<vertical>"
    }
  }
}
```

## Why join_waitlist is rated Critical

This tool commits the user to a recurring financial obligation ($19/month subscription), making it a Financial category action. Misuse by an AI agent could result in unauthorized subscription enrollment and ongoing monetary charges that may be difficult to reverse (grandfathered pricing implies a binding commitment). Severity is high because the financial commitment is recurring and potentially perpetual.

From the tool's own definition: "Register for a paid vertical waitlist. Inaugural cohort: $19/mo, 900 members, grandfathered for life."

Risk signals: Bulk/mass operation — affects multiple targets

## Use case

AI agents use join_waitlist to commit financial operations through Agent Module, usually the final step of a payment, billing, or trading workflow. A call moves real money.

## Recommended policy (PolicyLayer)

Verdict: **Approval-gated**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Agent Module:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "join_waitlist": {
      "deny_if": [
        {
          "conditions": [],
          "on_deny": "Requires human approval."
        }
      ]
    }
  }
}
```

## Other tools on Agent Module (6)

- `submit_referral` — Financial — https://policylayer.com/tools/dev-agent-module-mcp/submit-referral.md
- `check_status` — Read — https://policylayer.com/tools/dev-agent-module-mcp/check-status.md
- `query_knowledge` — Read — https://policylayer.com/tools/dev-agent-module-mcp/query-knowledge.md
- `get_trial_key` — Write — https://policylayer.com/tools/dev-agent-module-mcp/get-trial-key.md
- `register_interest` — Write — https://policylayer.com/tools/dev-agent-module-mcp/register-interest.md
- `submit_pov` — Write — https://policylayer.com/tools/dev-agent-module-mcp/submit-pov.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=dev-agent-module-mcp · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/dev-agent-module-mcp
