‹ 首页

dev-mcp-setup

@evolution-foundation · 收录于 5 天前 · 上游提交 2 个月前

Configure MCP servers for the workspace — web search, filesystem, GitHub, Stripe, etc. Use when adding a new integration that needs MCP-level access.

适合你,如果需要为工作区添加 MCP 级别的外部服务集成

/ 通过 npx 安装 校验哈希
npx oh-my-skill add evolution-foundation/evo-nexus/dev-mcp-setup
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- evolution-foundation/evo-nexus/dev-mcp-setup
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify evolution-foundation/evo-nexus/dev-mcp-setup
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
509GitHub stars
~531上下文体积 · 单文件
索引托管

怎么用

商店整理自技能原文 · 版本 7f5dd76 · 表述以原文为准
它做什么

Claude 会帮你配置 MCP 服务器,例如添加网络搜索、GitHub 等工具的连接。它会检查当前配置、添加新服务器并重启验证。

什么时候触发

当你要添加新的 MCP 集成(如网络搜索、GitHub)或诊断现有 MCP 服务器无响应时触发。

装好后可以这样说
启动配置步骤,要求添加 GitHub MCP。
触发诊断流程,检查日志和环境变量。
告诉Claude需要新MCP集成。
技能原文 SKILL.md作者撰写 · Apache-2.0 · 7f5dd76

Dev MCP Setup

Derived from oh-my-claudecode (MIT, Yeachan Heo). Adapted for the EvoNexus Engineering Layer.

Configure MCP (Model Context Protocol) servers for the workspace. When a new integration needs access at the MCP layer (rather than via skill-level API calls), this skill walks through the configuration.

Use When
  • Adding a new MCP-backed integration (web search, GitHub, Notion, etc.)
  • Diagnosing why an existing MCP server isn't responding
  • Setting up a fresh EvoNexus workspace with all standard MCPs
Do Not Use When
  • The integration is API-based (use the appropriate int-* skill instead)
  • You just need to invoke an existing MCP tool (just use it)
EvoNexus Standard MCPs

These are typically configured in ~/.claude/settings.json or .claude/settings.json:

| MCP | Purpose | Setup | |---|---|---| | google-calendar | Calendar events | OAuth | | gmail | Email read/send | OAuth | | linear-server | Linear issues/projects | API key | | github | GitHub PRs/issues/files | GitHub token | | canva | Design files | OAuth | | claude_ai_Notion | Notion pages | OAuth | | computer-use | Desktop control | local | | figma | Design files | OAuth | | plugin_telegram | Telegram bot | bot token |

Workflow
  1. Identify which MCP server you need to add
  2. Check current config — read .claude/settings.json (project) or ~/.claude/settings.json (user)
  3. Add the server entry with its required env vars or auth
  4. Restart Claude Code to load the new MCP
  5. Verify by listing tools — the new MCP's tools should appear with mcp__<server>__* prefix
  6. Document the addition in workspace/development/research/[C]mcp-setup-{server}-{date}.md
Configuration Example
{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-github"],
      "env": {
        "GITHUB_TOKEN": "${GITHUB_TOKEN}"
      }
    }
  }
}
Diagnostics

If an MCP isn't working:

  1. Check Claude Code logs for spawn errors
  2. Verify env vars are set
  3. Test the MCP server independently if possible
  4. Check that the MCP package is installed
Pairs With
  • update-config (built-in skill for settings.json edits)
  • @scout-explorer (to find existing MCP configurations)
按 Apache-2.0 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。