今天给大家盘一盘,2025 年最值得开发者第一时间装上的 5 个 官方 MCP 服务器。全部亲测真香,而且一条命令就能接进 Cursor / Claude Code / Gemini Cli,用完你会回来点赞的。

1️⃣ Playwright MCP – 微软官方浏览器外挂
一句话卖点:让 AI 直接操控真·浏览器,点点滑滑全部自动化。
典型场景:
• 一键抓取某东秒杀价
• 自动填表、截图、跑端到端测试
接入地址:https://github.com/microsoft/playwright-mcp
实测命令:
npx @playwright/mcp@latest启动后,直接对 AI 说:“帮我去 GitHub Trending 截个图”,30 秒搞定 。
2️⃣ GitHub MCP – GitHub 官方“小秘书”
一句话卖点:仓库、Issue、PR 随口问,AI 直接读代码。
典型场景:
• “看看我仓库还有多少 open 的 bug”
• “给我总结一下最近 5 个 PR 的改动”
接入地址:https://github.com/github/github-mcp-server
实测命令:
docker run -it -e GITHUB_TOKEN ghcr.io/github/github-mcp-server连上后,再也不用开 20 个标签页查仓库了 。
3️⃣ Jupyter MCP – Jupyter 官方数据外挂
一句话卖点:CSV、DataFrame、绘图,一句话让 AI 帮你跑 Notebook。
典型场景:
• “打开 coffee.csv 算算我上个月咖啡花了多少钱”
• 自动生成可视化图表
接入地址:https://github.com/jupyter-server/jupyter-mcp-server
实测命令:
pip install jupyter-mcp-server
python -m jupyter_mcp_server不会写 pandas?没关系,AI 帮你写,还顺手把图画了 。
4️⃣ FastAPI-MCP – FastAPI 官方“变身器”
一句话卖点:把任意 FastAPI 接口秒变成 AI 可调用的工具。
典型场景:
• 已有待办事项 API,直接让 AI 帮你查任务、改状态
• 把内部微服务快速暴露给 AI,不写 SDK
接入地址:https://github.com/fastapi/fastapi-mcp
实测代码片段:
from fastapi import FastAPI
from fastapi_mcp import add_mcp
app = FastAPI()
add_mcp(app) # 一行搞定启动后,AI 就能像调用函数一样调用你的接口 。
5️⃣ Knowledge Graph Memory – Anthropic 官方“最强大脑”
一句话卖点:AI 记住你所有项目上下文,跨会话不丢记忆。
典型场景:
• 两周前写到一半的算法,AI 能接着写
• 记住“用户画像项目”里所有表结构和业务含义
接入地址:https://github.com/modelcontextprotocol/servers/tree/main/src/kg-memory
实测命令:
npm i -g @anthropic/kg-memory-mcp
kg-memory-mcp serve用了它,AI 终于像个长期搭档,而不是金鱼记忆 。
一条命令全装上(懒人脚本)
把下面这段粘进 claude_desktop_config.json 的 mcpServers 字段里,重启即可一次到位:
{
"playwright":{"command":"npx","args":["@playwright/mcp@latest"]},
"github":{"command":"docker","args":["run","-e","GITHUB_TOKEN","ghcr.io/github/github-mcp-server"]},
"jupyter":{"command":"python","args":["-m","jupyter_mcp_server"]},
"fastapi":{"command":"uvicorn","args":["main:app","--reload"]},
"kg-memory":{"command":"kg-memory-mcp","args":["serve"]}
}小结
MCP | 官方背书 | 一句话 |
Playwright MCP | 微软 | 浏览器想点就点 |
GitHub MCP | GitHub | 代码仓库小秘书 |
Jupyter MCP | Jupyter | 数据分析零代码 |
FastAPI-MCP | FastAPI | 接口秒变 AI 工具 |
KG Memory | Anthropic | 项目记忆永不丢 |
全部开源、免费、官方维护,闭眼装都不会踩坑。
2025年AI编程必备的5个官方MCP
2387

被折叠的 条评论
为什么被折叠?



