Skip to content

YetiTech Docs MCP

The YetiTech Docs MCP server lets AI assistants search and read docs.yetitechstudios.com directly from your editor or chat client — plugin guides, tutorials, API reference, and recent changelog entries.

Server URL: https://mcp.yetitechstudios.com

ToolPurpose
search_yetitech_docsSemantic search across plugin guides, tutorials, and API reference
fetch_yetitech_docFetch a single page as plain text (by path or URL)
list_yetitech_doc_indexReturn the site llms.txt link index
list_yetitech_productsList all YetiTech product doc slugs under /guide/

No API key is required for the public server.

Pick your editor or assistant — each page has copy-paste config:

ClientBest forGuide
CursorAI-native IDENative HTTP url in mcp.json
ClaudeDesktop chat + Claude Code CLImcp-remote (Desktop) or claude mcp add (Code)
VS CodeGitHub Copilot agent mode.vscode/mcp.json with type: http
WindsurfCodeium Cascade IDEserverUrl in global mcp_config.json
ClineOpen-source VS Code agentstreamableHttp in Cline MCP settings
ZedFast Rust editorcontext_servers with direct url or mcp-remote
ContinueOpen-source VS Code / JetBrains extensionstreamable-http in config.yaml

Using something else? Any client that supports remote MCP over Streamable HTTP can point at the server URL above. Clients that only support stdio can bridge with mcp-remote (see the Claude Desktop page).

flowchart LR
  Client["MCP client"]
  MCP["yetitech-docs-mcp Worker"]
  VZ["Vectorize\nyetitech-docs-index"]
  Site["docs.yetitechstudios.com"]
  Client -->|"HTTP"| MCP
  MCP --> VZ
  MCP --> Site
PartRole
yetitech-docs-mcp WorkerMCP server — exposes search and fetch tools
yetitech-docs-indexSearch index built from this documentation site
docs.yetitechstudios.comCanonical HTML and llms.txt / llms-full.txt sources

Search and fetch cover everything published on this site:

  • Plugin guides — setup, tutorials, Blueprint and C++ reference per product
  • API reference — auto-generated class and member docs (where available)
  • Changelog — recent release notes

If you also use Unreal MCP (editor) for editor automation, add it as a second MCP server — yetitech-docs for documentation, unreal-engine for the open Unreal Editor.

ProblemFix
Connection refused / offlineCheck https://mcp.yetitechstudios.com/health returns JSON
No tools listedRestart or reload MCP in your client; confirm JSON is valid
Empty search resultsDocs may still be ingesting — try list_yetitech_doc_index or browse Plugin guides
Wrong or empty answersConfirm the yetitech-docs server is connected and tools are enabled

Client-specific fixes are on each connect page linked above.