🧩
Claude Code 生态大全 2024.12
插件、Skills、MCP Servers、周边工具一网打尽
🔍 快速查找
🔌 热门 MCP Servers
MCP (Model Context Protocol) 让 Claude 能够连接外部工具和数据源
📁 Filesystem
读写本地文件系统,支持目录浏览、文件编辑
🐙 GitHub
操作 GitHub 仓库、PR、Issues、代码搜索
🌐 Puppeteer
浏览器自动化,网页截图、数据抓取
🐘 PostgreSQL
连接 PostgreSQL 数据库,执行 SQL 查询
💾 SQLite
操作本地 SQLite 数据库
💬 Slack
发送 Slack 消息、管理频道
🧠 Memory
持久化记忆存储,构建知识图谱
🌍 Fetch
发送 HTTP 请求,调用外部 API
🔍 Brave Search
Brave 搜索引擎集成
📄 Google Drive
访问 Google Drive 文件和文档
🎨 EverArt
AI 图片生成集成
💭 Sequential Thinking
增强的顺序思考和推理能力
⚡ Claude Code Skills
Skills 是预定义的提示词模板,可通过
/skill-name
快速调用
code-review
专业的代码审查,检查 bug、安全问题、最佳实践
/code-review
commit
生成规范的 Git commit 消息
/commit
explain-code
详细解释代码功能和逻辑
/explain-code [file-path]
create-architecture-documentation
生成架构文档,支持 C4 模型、ADR、PlantUML
/create-architecture-documentation
ultra-think
深度分析和问题解决,多维度思考
/ultra-think [question]
自定义 Skills:在项目根目录创建
.claude/commands/
文件夹,添加
.md
文件即可创建自定义 Skill。
🧩 Claude Code 插件
扩展 Claude Code 功能的第三方插件
🤖 Agent SDK Dev
快速创建和验证 Claude Agent SDK 应用
🔍 Code Review
自动化 PR 代码审查,检查 bug 和规范
🏛️ Backend Architect
后端架构设计和 API 设计专家
🛠️ 周边工具
⚙️ MCP 配置示例
Claude Desktop 配置文件路径:
-
macOS
:
~/Library/Application Support/Claude/claude_desktop_config.json -
Windows
:
%APPDATA%\Claude\claude_desktop_config.json
// claude_desktop_config.json
{
"mcpServers"
: {
"filesystem"
: {
"command"
:
"npx"
,
"args"
: [
"-y"
,
"@modelcontextprotocol/server-filesystem"
,
"/Users/yourname/Documents"
] },
"github"
: {
"command"
:
"npx"
,
"args"
: [
"-y"
,
"@modelcontextprotocol/server-github"
],
"env"
: {
"GITHUB_PERSONAL_ACCESS_TOKEN"
:
"your_token"
} },
"memory"
: {
"command"
:
"npx"
,
"args"
: [
"-y"
,
"@modelcontextprotocol/server-memory"
] } } }
配置修改后需要重启 Claude Desktop 才能生效。确保已安装 Node.js 18+。
🔗 更多资源
最后更新:2025年12月 | 持续收录中...