949 B
949 B
created, type, tags, source
| created | type | tags | source | |||||
|---|---|---|---|---|---|---|---|---|
| 2026-03-19 12:02 | zettel |
|
https://github.com/affaan-m/everything-claude-code |
MCP 数量与上下文窗口的反比关系
每个启用的 MCP Server 都会占用上下文窗口空间(工具定义、schema 描述等)。实测数据:
- 0-5 个 MCP: 有效上下文接近 200K tokens
- 10+ 个 MCP: 有效上下文降至 ~70K tokens(降幅 65%)
最佳实践:
- 活跃 MCP <= 10 个,活跃工具总数 <= 80 个
- 用
disabledMcpServers动态禁用不用的 - 重操作优先用 CLI(如
gh)而不是 MCP - 使用
llms.txt模式获取文档,避免 MCP 常驻开销
这是 Claude Code 性能优化中最重要的单一因素 — 比任何 Agent 或 Skill 都重要。