╔═══════════════════════════════════════════════════════════════════════════════╗
║                              MCP_GUIDE                                        ║
║                     Model Context Protocol Tutorial                           ║
╚═══════════════════════════════════════════════════════════════════════════════╝

MCP Guide for WuKong Code

> WHAT_IS_MCP?

MCP (Model Context Protocol) is an open standard developed by Anthropic that enables seamless communication between AI assistants and external tools/services.

Think of MCP as a universal bridge that lets an AI agent interact with local tools, project context, databases, APIs, and more while keeping tool access explicit.

// MCP is part of Wukong Code's local agent surface, not a hosted model runtime

> WHY_WUKONG_CODE_USES_MCP

🔌 Extensibility
Connect compatible tool servers to extend Wukong Code's local coding workflow
🔒 Privacy First
Tool access happens from your machine by default, under your permissions
⚡ Real-time Context
Wukong Code can combine project files, shell output, and configured tools
🎯 Tool Integration
Access filesystem, search, APIs, and custom services through configured tools

> QUICK_START

// Step 1: Install Wukong Code
$ curl -fsSL https://wukong.today/install.sh | sh
// Step 2: Add a model provider
$ wukong provider catalog add deepseek --api-key <key> --default-model deepseek-v4-pro
// Step 3: Start the local TUI
$ wukong

> BUILT_IN_SERVERS

📁 Filesystem Server
Read and write files in your project
[INCLUDED]
🔍 Search Server
Search across your codebase
[INCLUDED]
🌐 Web Server
Use configured network tools when a workflow explicitly needs them
[INCLUDED]

> LEARN_MORE