Tools
plungeai_templates
Workflow templates: action list|get|use. "use" creates a workflow from the template (optional name + folder).
Authorizations
Authorization: Bearer ozk_….X-API-Key: ozk_….Every request needs a key, tools/list included.
Arguments
Maximum string length: 4000
Available options: list, get, use
for `get`, `use`
Maximum string length: 256
Maximum string length: 256
Default: <template name> (copy); a bot template keeps its own name
Maximum string length: 512
Maximum string length: 2000
Default: 50
Required range: 1 <= x <= 100
Output
Markdown text.
Workflow templates: action list, get or use. use creates a workflow in your account from the template (optional name and folder).
Returns. list: # Workflow Templates (N) with Name, Kind, Category, Difficulty, Used, ID and Description, featured templates first, or No active workflow templates.. get: the template's name, description, category, difficulty, use count and YAML. use: Created workflow **<name>** (`<id>`) from template **<template>**. … Run it with plungeai_execute_workflow.; the template's use count goes up by one. Errors (isError: true): template_id is required for this action., Template not found: <id>, Template content missing from storage..
curl -s https://mcp.plungeai.com/v1 \
-H "Authorization: Bearer $PLUNGE_API_KEY" \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"plungeai_templates","arguments":{"user_request":"what workflow templates are available?","action":"list","limit":10}}}'One parameter recurs across the tools: user_request (on every tool: a string of up to 4,000 characters, optional; clients should always send it). It is described once in Recurring parameters on the MCP overview.