Get Knowledge Entry
tidb_get_knowledgeRetrieve a specific knowledge entry by ID from the TiDB RAG knowledge base. Choose Markdown for human-readable content or JSON for structured data.
Instructions
Get a single knowledge entry by ID from TiDB RAG knowledge base.
This tool retrieves the full content of a specific knowledge entry.
Args:
id (string): Knowledge entry ID (e.g., "kb-001")
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: For JSON format: { "id": string, "title": string, "content": string, "category": string | null, "metadata": object | null, "created_at": string, "updated_at": string }
Examples:
Get by ID: { "id": "kb-001" }
Get as JSON: { "id": "kb-001", "response_format": "json" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Knowledge entry ID | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |