Tools

list_prompts

Read prompt rows. Default limit 50, maximum 100. Pass nextCursor to read the next page.

Arguments#

Name Type Required Values and constraints
host string Required maxLength 253 Project host from list_projects, without scheme or path.
status string Optional active, suggested, archived, rejected
topic string Optional maxLength 200
limit integer Optional min 1 max 100
cursor string Optional maxLength 16

Additional properties are rejected.

Example call#

Send this JSON-RPC body to POST https://app.keptai.com/mcp after the client’s initialize handshake, with your Bearer header.

JSON-RPC
{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "list_prompts",
    "arguments": {
      "host": "example.com"
    }
  }
}

Result and limits#

Default limit 50, maximum 100. Pass nextCursor as cursor to read the next page; results are ordered by numeric prompt ID.

Results contain text JSON and structuredContent. Check isError on tool failures and _meta.truncated for clipped data. All tools are read-only and respect project access. See Setup for authentication and rate limits.

Search titles, guides, and API references.