Get Knowledge Base Page
Tool ID: kb_get
Summary
Fetches one published knowledge base page by path (preferred) or id, including the full Markdown body.
When to use it
- Read the official page — After Overview or Search gave you a path.
- Quote or follow steps — When the AI needs the complete document, not just a summary.
- Ground an answer — Load the page before drafting a reply.
What you need
| Requirement | Required? |
|---|---|
| Metraclick connection | Yes |
| Tool enabled for your account | Yes |
| Extra service credentials | No |
Parameters
| Parameter | Required? | Description |
|---|---|---|
path |
One of path or id | Document path (for example welcome or billing/invoices). |
id |
One of path or id | Numeric document id (alternative to path). |
What you get back
If found: found: true and a document object with id, path, title, summary, body_md, tags, and timestamps.
If missing or unpublished: found: false and a short message.
{
"tool": "kb_get",
"found": true,
"document": {
"path": "welcome",
"title": "Welcome to the Knowledge Base",
"summary": "Intro to the shared Metraclick knowledge base for agents.",
"body_md": "# Welcome to the Knowledge Base\n\n...",
"tags": ["getting-started", "mcp"]
}
}
Example prompts
Open the knowledge base page at path welcome and summarize it.
Get the full Markdown for the knowledge base page about connecting a client.
Load the knowledge base document we just found and use it to answer my question.
Tips
- Prefer
pathoverid— paths are stable and human-readable. - Only published pages are returned.
- Keep answers grounded in
body_md; do not invent steps that are not on the page.