AI Guide

v1.0.0Developer Toolsstable

程序员鱼皮的 AI 资源大全 + Vibe Coding 零基础教程,分享 OpenClaw 保姆级教程、大模型玩法(DeepSeek / GPT / Gemini / Claude)、最新 AI 资讯、Prompt 提示词大全、AI 知识百科(Agent Skills / RAG / MCP / A2A)、AI 编程教程(Harness Engineering)、AI 工具用法(Cursor / Claude Code / TRAE / Codex / Copilot)、AI 开发框架教程(S

aialgorithmartificial-intelligencechatgptclaude
Share:
14,297
Stars
0
Downloads
0
Weekly
0/5

What is AI Guide?

AI Guide is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to 程序员鱼皮的 ai 资源大全 + vibe coding 零基础教程,分享 openclaw 保姆级教程、大模型玩法(deepseek / gpt / gemini / claude)、最新 ai 资讯、prompt 提示词大全、ai 知识百科(agent skills / rag / mcp / a2a)、ai 编程教程(harness engineering)、ai 工具用法(cursor /...

程序员鱼皮的 AI 资源大全 + Vibe Coding 零基础教程,分享 OpenClaw 保姆级教程、大模型玩法(DeepSeek / GPT / Gemini / Claude)、最新 AI 资讯、Prompt 提示词大全、AI 知识百科(Agent Skills / RAG / MCP / A2A)、AI 编程教程(Harness Engineering)、AI 工具用法(Cursor / Claude Code / TRAE / Codex / Copilot)、AI 开发框架教程(S

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • 程序员鱼皮的 AI 资源大全 + Vibe Coding 零基础教程,分享 OpenClaw 保姆级教程、大模型玩法(D

Use Cases

AI learning resources
OpenClaw tutorials
Prompt engineering guides
liyupi

Maintainer

LicenseMIT
Languagejavascript
Versionv1.0.0
UpdatedMay 22, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx ai-guide

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use AI Guide

AI Guide is an MCP server that connects AI assistants to a comprehensive Chinese-language AI knowledge base maintained by programmer 'Yupi' (liyupi). It provides curated tutorials on Vibe Coding, DeepSeek, GPT, Gemini, Claude, Cursor, and other AI tools and frameworks. Developers who want step-by-step AI programming guidance, prompt engineering references, and an organized catalog of AI resources can query this knowledge base directly from their MCP client instead of searching the web.

Prerequisites

  • Node.js 18 or later installed on your system
  • An MCP-compatible client such as Claude Desktop or VS Code with an MCP extension
  • npx available in your PATH (comes with Node.js/npm)
  • Internet connection to reach the upstream AI knowledge base
1

Verify Node.js is installed

AI Guide runs via npx, so you need Node.js 18+ on your machine. Confirm the version before proceeding.

node --version
2

Test the server locally

Run the server once with npx to confirm it starts correctly. You should see the MCP server start-up message in the terminal.

npx ai-guide
3

Open your MCP client configuration file

For Claude Desktop on macOS, the configuration file lives at ~/Library/Application Support/Claude/claude_desktop_config.json. Create it if it does not exist.

4

Add ai-guide to the MCP servers block

Insert the server definition under the mcpServers key. The server requires no API keys or environment variables for basic use.

{
  "mcpServers": {
    "ai-guide": {
      "command": "npx",
      "args": ["ai-guide"]
    }
  }
}
5

Restart your MCP client

Save the configuration file and fully restart Claude Desktop (or your chosen MCP client) so it picks up the new server entry.

6

Verify the connection

In your MCP client, check the available tools list. You should see tools from the ai-guide server. Ask a question about AI resources to confirm the server responds correctly.

AI Guide Examples

Client configuration

Minimal Claude Desktop configuration to enable the AI Guide MCP server.

{
  "mcpServers": {
    "ai-guide": {
      "command": "npx",
      "args": ["ai-guide"]
    }
  }
}

Prompts to try

Example prompts to explore the AI knowledge base once the server is connected.

- "What are the best practices for writing prompts for DeepSeek?"
- "Give me a beginner Vibe Coding tutorial for building a web app with Claude"
- "List the AI tools covered in the knowledge base for code generation"
- "Explain how to use MCP with Claude Code according to the guide"

Troubleshooting AI Guide

npx ai-guide fails with 'package not found' or a network error

Ensure you have a stable internet connection and that npm registry is reachable. Run `npm cache clean --force` and retry. If behind a corporate proxy, set the HTTP_PROXY and HTTPS_PROXY environment variables.

Claude Desktop does not show the ai-guide tools after restart

Double-check the JSON syntax in claude_desktop_config.json — a trailing comma or missing brace is a common culprit. Use a JSON linter, save the file, and fully quit and reopen Claude Desktop.

Server starts but returns no results for queries

The knowledge base content is fetched from the upstream GitHub repository. Make sure your machine can reach github.com. If the repository has been updated, running `npx ai-guide@latest` ensures you get the most recent version.

Frequently Asked Questions about AI Guide

What is AI Guide?

AI Guide is a Model Context Protocol (MCP) server that 程序员鱼皮的 ai 资源大全 + vibe coding 零基础教程,分享 openclaw 保姆级教程、大模型玩法(deepseek / gpt / gemini / claude)、最新 ai 资讯、prompt 提示词大全、ai 知识百科(agent skills / rag / mcp / a2a)、ai 编程教程(harness engineering)、ai 工具用法(cursor / claude code / trae / codex / copilot)、ai 开发框架教程(s It connects AI assistants to external tools and data sources through a standardized interface.

How do I install AI Guide?

Follow the installation instructions on the AI Guide GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with AI Guide?

AI Guide works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is AI Guide free to use?

Yes, AI Guide is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "ai-guide": { "command": "npx", "args": ["-y", "ai-guide"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use AI Guide?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides