MCP Reference

Portal Docs Search — MCP Tools

2 tools in the Portal Docs Search group of the Routebase MCP server.

get_portal_page

Retrieve a single PUBLISHED documentation page by slug, with its full Markdown content. Only pages from the latest published version are accessible. Use search_portal_docs to discover slugs. Requires project context (call set_context first).

Required scope: docs:read

Parameter Type Required Description
documentationId string Yes The public Id (Guid) of the documentation
pageSlug string Yes The slug of the page to retrieve

search_portal_docs

Full-text search across a PUBLISHED documentation portal. Searches page titles, headings, and body text of the latest published version and returns matching pages (slug, title, section, snippet). Chain get_portal_page with a returned slug to read the full page. Keyword search only (no semantics). Requires project context (call set_context first).

Required scope: docs:read

Parameter Type Required Description
documentationId string Yes The public Id (Guid) of the documentation
query string Yes The search query (case-insensitive keyword match)
limit integer No (default 10) Maximum number of results to return (default 10, max 50)