Finding the Right MCP Tool

There are about thirty MCP tools across the two servers this wiki exposes. Most agents only ever need five of them. This runbook is the decision tree.

When to use this runbook

Any time you catch yourself reaching for get_page when you really only needed orientation, or trying to write through /knowledge-mcp (which is read-only). Re-read this when you start a new agent session.

Context

Two MCP endpoints, partitioned by trust level:

Walkthrough

Two questions disambiguate every scenario:

  1. Read or write? Writes go through /wikantik-admin-mcp only and require an author-configurable agent. If you're not certain you have write privileges, default to read.
  2. Full body or just the shape? If you only need to cite the page or orient yourself, get_page_for_agent returns the token-budgeted projection — verification state, key facts, headings, typed relations. If you need the prose, fall back to get_page.

For the broader retrieval question — "which tool finds me a page" — defer to ChoosingARetrievalMode.

Pitfalls

The frontmatter pitfalls capture the recurring mistakes. The most expensive in tokens-per-error is the get_page-for-orientation antipattern: agents pull the entire markdown body when a 4 KB projection would have sufficed.