Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

mcp-setupMCP 设置

Agent Skill

mcp-setup 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,787

周安装

315

GitHub Stars

31,987

下载量

2,444
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mcp-setup(MCP 设置)
来源仓库:https://github.com/yeachan-heo/oh-my-claudecode
仓库路径:skills/mcp-setup
安装命令:
npx skills add https://github.com/yeachan-heo/oh-my-claudecode --skill mcp-setup
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/yeachan-heo/oh-my-claudecode --skill mcp-setup

简介

mcp-setup 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要配置 Claude Code 环境或学习最佳实践的场景。
  • 通过步骤引导和模板应用来简化设置过程,具体用法需结合原始 README 确认。
  • 安装前建议确认系统权限和维护状态,注意可能涉及网络下载和配置文件修改。
  • 使用时应按照官方指南逐步验证每个环节,确保环境正确搭建。

SKILL.md

MCP Setup

Configure Model Context Protocol (MCP) servers to extend Claude Code's capabilities with external tools like web search, file system access, and GitHub integration.

Overview

MCP servers provide additional tools that Claude Code agents can use. This skill helps you configure popular MCP servers using the claude mcp add command-line interface.

Step 1: Choose a Setup Path

Use AskUserQuestion with one question at a time and no more than 3 options per question. Recent Claude Code builds reject larger option payloads as invalid tool parameters, so keep the MCP selection flow staged.

Step 1.1: First menu

Question: "What kind of MCP setup would you like?"

Options:

  1. Recommended starter setup - Fast path for the most common OMC MCP additions
  2. Individual popular server - Pick one built-in server from a short follow-up menu
  3. Custom server - Add your own stdio or HTTP MCP server

Step 1.2: If the user chooses "Recommended starter setup"

Ask a follow-up AskUserQuestion:

Question: "Which recommended MCP bundle should I configure?"

Options:

  1. Context7 only (Recommended) - Zero-config docs/context server
  2. Context7 + Exa - Docs/context plus enhanced web search
  3. Full recommended bundle - Context7, Exa, Filesystem, and GitHub

Map that choice to the server list you will configure.

Step 1.3: If the user chooses "Individual popular server"

Ask a follow-up AskUserQuestion:

Question: "Which server should I configure first?"

Options:

  1. Context7 (Recommended) - Documentation and code context from popular libraries
  2. Exa Web Search - Enhanced web search (replaces built-in websearch)
  3. More server choices - Filesystem, GitHub, or the full recommended bundle

If the user chooses More server choices, ask one more AskUserQuestion:

Question: "Which additional MCP option do you want?"

Options:

  1. Filesystem (Recommended) - Extended file system access with additional capabilities
  2. GitHub - GitHub API integration for issues, PRs, and repository management
  3. Full recommended bundle - Configure Context7, Exa, Filesystem, and GitHub together

Step 1.4: If the user chooses "Custom server"

Skip directly to the Custom MCP Server section below.

Step 2: Gather Required Information

For Context7:

No API key required. Ready to use immediately.

For Exa Web Search:

Ask for API key:

Do you have an Exa API key?
- Get one at: https://exa.ai
- Enter your API key, or type 'skip' to configure later

For Filesystem:

Ask for allowed directories:

Which directories should the filesystem MCP have access to?
Default: Current working directory
Enter comma-separated paths, or press Enter for default

For GitHub:

Ask for token:

Do you have a GitHub Personal Access Token?
- Create one at: https://github.com/settings/tokens
- Recommended scopes: repo, read:org
- Enter your token, or type 'skip' to configure later

Step 3: Add MCP Servers Using CLI

Use the claude mcp add command to configure each MCP server. The CLI automatically handles settings.json updates and merging.

Context7 Configuration:

claude mcp add context7 -- npx -y @upstash/context7-mcp

Exa Web Search Configuration:

claude mcp add -e EXA_API_KEY=<user-provided-key> exa -- npx -y exa-mcp-server

Filesystem Configuration:

claude mcp add filesystem -- npx -y @modelcontextprotocol/server-filesystem <allowed-directories>

GitHub Configuration:

Option 1: Docker (local)

claude mcp add -e GITHUB_PERSONAL_ACCESS_TOKEN=<user-provided-token> github -- docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN ghcr.io/github/github-mcp-server

Option 2: HTTP (remote)

claude mcp add --transport http github https://api.githubcopilot.com/mcp/
Note: Docker option requires Docker installed. HTTP option is simpler but may have different capabilities.

Step 4: Verify Installation

After configuration, verify the MCP servers are properly set up:

# List configured MCP servers
claude mcp list

This will display all configured MCP servers and their status.

Step 5: Show Completion Message

MCP Server Configuration Complete!

CONFIGURED SERVERS:
[List the servers that were configured]

NEXT STEPS:
1. Restart Claude Code for changes to take effect
2. The configured MCP tools will be available to all agents
3. Run `claude mcp list` to verify configuration

USAGE TIPS:
- Context7: Ask about library documentation (e.g., "How do I use React hooks?")
- Exa: Use for web searches (e.g., "Search the web for latest TypeScript features")
- Filesystem: Extended file operations beyond the working directory
- GitHub: Interact with GitHub repos, issues, and PRs

TROUBLESHOOTING:
- If MCP servers don't appear, run `claude mcp list` to check status
- Ensure you have Node.js 18+ installed for npx-based servers
- For GitHub Docker option, ensure Docker is installed and running
- Run /oh-my-claudecode:omc-doctor to diagnose issues

MANAGING MCP SERVERS:
- Add more servers: /oh-my-claudecode:mcp-setup or `claude mcp add ...`
- List servers: `claude mcp list`
- Remove a server: `claude mcp remove <server-name>`

Custom MCP Server

If user selects "Custom":

Ask for:

  1. Server name (identifier)
  2. Transport type: stdio (default) or http
  3. For stdio: Command and arguments (e.g., npx my-mcp-server)
  4. For http: URL (e.g., https://example.com/mcp)
  5. Environment variables (optional, key=value pairs)
  6. HTTP headers (optional, for http transport only)

Then construct and run the appropriate claude mcp add command:

For stdio servers:

# Without environment variables
claude mcp add <server-name> -- <command> [args...]

# With environment variables
claude mcp add -e KEY1=value1 -e KEY2=value2 <server-name> -- <command> [args...]

For HTTP servers:

# Basic HTTP server
claude mcp add --transport http <server-name> <url>

# HTTP server with headers
claude mcp add --transport http --header "Authorization: Bearer <token>" <server-name> <url>

Company-context convention

If the custom server is meant to provide organization-specific reference material to OMC workflows, prefer a single tool named get_company_context that returns markdown via {context: string}.

Example local registration:

claude mcp add company-context -- node examples/vendor-mcp-server/server.mjs

Then point OMC at the full tool name in .claude/omc.jsonc or ~/.config/claude-omc/config.jsonc:

{
  "companyContext": {
    "tool": "mcp__company-context__get_company_context",
    "onError": "warn"
  }
}

This remains advisory prompt context, not runtime enforcement.

Common Issues

MCP Server Not Loading

  • Ensure Node.js 18+ is installed
  • Check that npx is available in PATH
  • Run claude mcp list to verify server status
  • Check server logs for errors

API Key Issues

  • Exa: Verify key at https://dashboard.exa.ai
  • GitHub: Ensure token has required scopes (repo, read:org)
  • Re-run claude mcp add with correct credentials if needed

Agents Still Using Built-in Tools

  • Restart Claude Code after configuration
  • The built-in websearch will be deprioritized when exa is configured
  • Run claude mcp list to confirm servers are active

Removing or Updating a Server

  • Remove: claude mcp remove <server-name>
  • Update: Remove the old server, then add it again with new configuration

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

31.56%
按下载量换算771

OpenCode

23.23%
按下载量换算568

Antigravity

17.59%
按下载量换算430

Gemini CLI

12.3%
按下载量换算301

Cursor

9%
按下载量换算220

trae

3.81%
按下载量换算93

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills