# kb_tag

Add or remove tags on an existing entry.

Agent View of the PolicyLayer registry record for `kb_tag`. HTML page: https://policylayer.com/tools/0x67108864-persistent-kb-mcp/kb-tag

## Facts

- Tool: `kb_tag`
- Server: Persistent Kb (`0x67108864/persistent-kb-mcp`) — https://policylayer.com/tools/0x67108864-persistent-kb-mcp.md
- Homepage: https://github.com/0x67108864/persistent-kb-mcp
- Risk category: Write (Medium risk)
- Registry record: grade D, identity unverified
- Server rate-limited: no
- Parameters: 0
- Recommended policy verdict: Rate-limited

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

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "kb_tag",
    "arguments": {}
  }
}
```

## Why kb_tag is rated Medium

This tool modifies existing data (tags on entries) but does not delete entries or execute code. Tag changes are reversible (tags can be re-added or re-removed), placing this squarely in the Write category. Blast radius is low since it only affects metadata tagging within a local SQLite knowledge base.

From the tool's own definition: "'Add or remove tags on an existing entry' — modifies tag metadata on an existing knowledge base entry reversibly"

## Use case

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

## Recommended policy (PolicyLayer)

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

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

## Other tools on Persistent Kb (4)

- `kb_list` — Read — https://policylayer.com/tools/0x67108864-persistent-kb-mcp/kb-list.md
- `kb_search` — Read — https://policylayer.com/tools/0x67108864-persistent-kb-mcp/kb-search.md
- `kb_show` — Read — https://policylayer.com/tools/0x67108864-persistent-kb-mcp/kb-show.md
- `kb_add` — Write — https://policylayer.com/tools/0x67108864-persistent-kb-mcp/kb-add.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=0x67108864-persistent-kb-mcp · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/0x67108864-persistent-kb-mcp
