JSON-RPC method
prompts/list
List the one prompt, plungeai.
Returns the one prompt, plungeai. Support: supported. In Claude Code it appears as /plungeai:plungeai (MCP).
Params
None: send "params": {} or leave params out.
Result
| Field | Value |
|---|---|
prompts[].name | plungeai |
prompts[].title | PlungeAI |
prompts[].description | PlungeAI MCP |
prompts[].arguments | One: request (optional), "What you want to accomplish (optional)" |
Example
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":7,"method":"prompts/list"}'{"jsonrpc":"2.0","id":7,"result":{"prompts":[{"name":"plungeai","title":"PlungeAI","description":"PlungeAI MCP","arguments":[{"name":"request","description":"What you want to accomplish (optional)","required":false}]}]}}Errors
Protocol errors mean the request never reached a tool; the body is {"jsonrpc":"2.0","error":{"code":…,"message":"…"},"id":…}.
| HTTP | Code | When |
|---|---|---|
| 401 | -32001 | No key, or a wrong, revoked or expired key, or a bearer that does not start with ozk_ |
The full table is on the MCP Reference overview.