# list_capabilities

List all scene types and Remotion motion-graphic templates available in DemoStudio.

Agent View of the PolicyLayer registry record for `list_capabilities`. HTML page: https://policylayer.com/tools/demostudio/list-capabilities

## Facts

- Tool: `list_capabilities`
- Server: DemoStudio (`@demostudio/mcp-server`) — https://policylayer.com/tools/demostudio.md
- Install: `npx -y @demostudio/mcp-server`
- Homepage: https://github.com/32bitsret/demostudio-mcp-server
- Risk category: Read (Low risk)
- Registry record: grade B, identity unverified
- Server rate-limited: no
- Parameters: 0
- Recommended policy verdict: Allowed

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

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

## Why list_capabilities is rated Low

This tool performs a straightforward read operation—it enumerates available templates and scene types to inform the user or agent about what DemoStudio can do. It has no side effects, does not execute code, does not modify any data, and does not commit financial or destructive actions. The blast radius of misuse is minimal; an agent could at worst spam requests, but the tool itself is informational only.

From the tool's own definition: "Tool name 'list_capabilities' and description 'List all scene types and Remotion motion-graphic templates available' indicate a query operation that retrieves and displays information about available features without modifying, executing, or deleting any data."

## Use case

AI agents call list_capabilities to retrieve information from DemoStudio without modifying anything. It is typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.

## Recommended policy (PolicyLayer)

Verdict: **Allowed**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches DemoStudio:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "list_capabilities": {}
  }
}
```

## Other tools on DemoStudio (3)

- `create_schedule` — Execute — https://policylayer.com/tools/demostudio/create-schedule.md
- `get_video_status` — Read — https://policylayer.com/tools/demostudio/get-video-status.md
- `generate_video` — Write — https://policylayer.com/tools/demostudio/generate-video.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=demostudio · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/demostudio
