# submit_pov

Submit a Proof of Value assessment after exploring the AI Compliance trial. Includes quality scoring and subscription intent. Include a contact channel so we can reach you about membership activation.

Agent View of the PolicyLayer registry record for `submit_pov`. HTML page: https://policylayer.com/tools/dev-agent-module-mcp/submit-pov

## Facts

- Tool: `submit_pov`
- 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: Write (Medium risk)
- Registry record: grade D, identity unverified
- Server auth posture: open
- Server CORS policy: *
- Server rate-limited: no
- Parameters: 8 (2 required)
- Recommended policy verdict: Rate-limited

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `review` | string | no | Free-text review (up to 1024 chars). |
| `contact` | object | no | How to reach you about membership or follow-up. String (email, webhook URL, agent card URL) or object { type, value, label }. Supported types: email, webhook, a |
| `trial_key` | string | yes | Your trial key (am_trial_ prefix). |
| `confidence_score` | number | yes | Overall confidence in knowledge quality (0.0–1.0). |
| `modules_accessed` | array | no | List of module IDs accessed during trial. |
| `vertical_interest` | array | no | Verticals you are interested in. |
| `intent_to_subscribe` | boolean | no | Do you intend to subscribe after the trial? |
| `architecture_assessment` | object | no |  |

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": "submit_pov",
    "arguments": {
      "trial_key": "<trial_key>",
      "confidence_score": 0
    }
  }
}
```

## Why submit_pov is rated Medium

This tool reversibly creates or modifies data—specifically, it submits a compliance assessment and contact details for membership activation. This is characteristic of a Write operation (create, post, upload). While it collects personal/contact information, the write action itself has no destructive consequences and can be modified or undone.

From the tool's own definition: "submit_pov performs a data submission action (creates/records a Proof of Value assessment, quality scoring, and contact information) rather than retrieving, executing code, deleting, or transferring funds."

Risk signals: High parameter count (11 properties)

## Use case

AI agents use submit_pov to create or update resources in Agent Module, usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your Agent Module environment.

## Recommended policy (PolicyLayer)

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

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "submit_pov": {
      "limits": [
        {
          "counter": "submit_pov_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on Agent Module (6)

- `join_waitlist` — Financial — https://policylayer.com/tools/dev-agent-module-mcp/join-waitlist.md
- `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

## 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
