For the complete documentation index, see llms.txt. This page is also available as Markdown.

Prompts

Pre-built MCP prompts that guide AI clients through common diagnostic and administrative workflows.

The server registers 32 pre-built MCP prompts that guide AI clients through common diagnostic and administrative workflows. Each prompt instructs the AI agent which tools to call and in what order, and provides system-level context for interpreting results.

Prompts are organized into the following categories:

Category
Page
Prompts

Operations & Monitoring

6

Diagnostics & Auditing

12

Developer & Data

6

Infrastructure & Incident

8


Getting a Prompt

Prompts are retrieved via JSON-RPC 2.0:

curl -s http://localhost:8080/~bxmcp/boxlang.bxm \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer your-token" \
  -d '{"jsonrpc":"2.0","method":"prompts/get","params":{"name":"prompt_name","arguments":{}},"id":"1"}'

See the Protocol Reference for complete details.

Last updated

Was this helpful?