Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计异常

mcp-server-managerMCP server manager 搜索

Agent Skill

mcp-server-manager 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

710

周安装

29

GitHub Stars

22

下载量

227
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tdimino/claude-code-minoan --skill mcp-server-manager

简介

mcp-server-manager 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在团队协作中管理项目进度。

  • 适用于需要跟踪代码审查、分配任务或协调开发者的场景。
  • 通过状态查询和变更分析来提供管理支持,具体用法需结合原始 README 确认。
  • 安装前建议确认 GitHub 访问权限和维护状态,注意可能涉及网络请求和数据处理。
  • 使用时应定期同步最新状态,确保信息的时效性和准确性。

SKILL.md

MCP Server Manager

Overview

MCP (Model Context Protocol) servers connect Claude Code to external tools, databases, and APIs. This skill provides guidance for installing, configuring, and managing MCP servers using the claude mcp command-line interface.

Quick Reference

Essential Commands

List all configured MCP servers:

claude mcp list

Get details about a specific server:

claude mcp get <server-name>

Remove a server:

claude mcp remove <server-name>

Check server status (from within Claude Code):

/mcp

Adding MCP Servers

Transport Types

MCP servers use one of three transport protocols. Choose the appropriate transport based on the server type:

HTTP Transport (Remote Servers)

For cloud-based services providing HTTP endpoints:

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

# Example: Add Notion server
claude mcp add --transport http notion https://mcp.notion.com/mcp

# With authentication header
claude mcp add --transport http secure-api https://api.example.com/mcp \
  --header "Authorization: Bearer YOUR_TOKEN"

SSE Transport (Server-Sent Events)

For remote servers using SSE protocol:

# Basic syntax
claude mcp add --transport sse <name> <url>

# Example: Add Webflow server
claude mcp add --transport sse webflow https://mcp.webflow.com/sse

# With API key header
claude mcp add --transport sse private-api https://api.company.com/sse \
  --header "X-API-Key: YOUR_KEY"

Stdio Transport (Local Process)

For servers running as local processes with stdio communication:

# Basic syntax
claude mcp add --transport stdio <name> [--env KEY=VALUE ...] -- <command> [args...]

# Example: Add Airtable server
claude mcp add --transport stdio airtable \
  --env AIRTABLE_API_KEY=YOUR_KEY \
  -- npx -y airtable-mcp-server

# Example: Add local Python server
claude mcp add --transport stdio custom-db \
  --env DB_URL=postgresql://localhost/mydb \
  -- python3 /path/to/server.py

Important: Use -- separator before the command to indicate where environment variables end and the command begins.

Configuration Scopes

MCP servers can be configured at three different scopes:

Local Scope (Default)

Private to the current project directory only. Ideal for:

  • Personal development servers
  • Experimental configurations
  • Servers with sensitive credentials
# Local scope (default)
claude mcp add --transport http stripe https://mcp.stripe.com

# Explicitly specify local scope
claude mcp add --transport http stripe --scope local https://mcp.stripe.com

Project Scope

Shared with team members via .mcp.json in project root. Ideal for:

  • Team-shared servers
  • Project-specific tools
  • Version-controlled configurations
# Add project-scoped server
claude mcp add --transport http paypal --scope project https://mcp.paypal.com/mcp

Creates/updates .mcp.json:

{
  "mcpServers": {
    "paypal": {
      "type": "http",
      "url": "https://mcp.paypal.com/mcp"
    }
  }
}

Security Note: Claude Code prompts for approval before using project-scoped servers. Reset approvals with:

claude mcp reset-project-choices

User Scope

Available across all projects on the machine. Ideal for:

  • Personal utility servers
  • Development tools used across projects
  • Frequently-used services
# Add user-scoped server
claude mcp add --transport http hubspot --scope user https://mcp.hubspot.com/anthropic

Scope Precedence

When servers with the same name exist at multiple scopes: Local > Project > User

Authentication

OAuth 2.0 (Remote Servers)

Many remote MCP servers use OAuth. Authentication flow:

  1. Add the server using claude mcp add
  2. First use triggers OAuth browser flow
  3. Authorize in browser
  4. Credentials stored in ~/.mcp-auth/

Example with Webflow:

# Add server
claude mcp add --transport sse webflow https://mcp.webflow.com/sse

# Check status - shows "⚠ Needs authentication"
claude mcp list

# Within Claude Code, trigger OAuth
# Ask: "List my Webflow sites"
# Browser opens for authorization

Reset OAuth credentials:

rm -rf ~/.mcp-auth

API Keys and Headers

For servers requiring API keys or custom headers:

# Bearer token
claude mcp add --transport http api-server https://api.example.com/mcp \
  --header "Authorization: Bearer YOUR_TOKEN"

# API key header
claude mcp add --transport sse service https://service.com/sse \
  --header "X-API-Key: YOUR_KEY"

# Multiple headers
claude mcp add --transport http api https://api.example.com/mcp \
  --header "Authorization: Bearer TOKEN" \
  --header "X-Custom-Header: VALUE"

Environment Variables (Stdio Servers)

Pass sensitive credentials via environment variables:

claude mcp add --transport stdio database \
  --env DB_PASSWORD=secret123 \
  --env API_KEY=key456 \
  -- python3 /path/to/db-server.py

Troubleshooting

Common Issues

Server shows "⚠ Needs authentication"

  • Remote server requires OAuth
  • Trigger authentication by using the server's tools
  • Check claude mcp get <name> for authentication status

Server shows "✗ Connection failed"

  • Verify URL is correct
  • Check network connectivity
  • Ensure authentication credentials are valid
  • For stdio servers, verify command path and permissions

Server not appearing in list

  • Restart Claude Code CLI if just added
  • Check scope - server may be at different scope level
  • Verify configuration file syntax

Project-scoped server requires repeated approval

  • Claude Code asks for approval on first use as security measure
  • Select "Approve once" or "Always approve" when prompted
  • Reset choices with claude mcp reset-project-choices

Configuration File Locations

Local scope: Project-specific settings in .claude/settings.local.json Project scope: .mcp.json in project root User scope: ~/.claude/settings.json

Debugging

Enable MCP debug mode:

claude --mcp-debug

Or use newer debug flag:

claude --debug

Check server details:

# Get server configuration
claude mcp get <server-name>

# List all servers with status
claude mcp list

Advanced Usage

Environment Variable Expansion in.mcp.json

Project-scoped configurations support environment variable expansion:

{
  "mcpServers": {
    "api-server": {
      "type": "http",
      "url": "${API_BASE_URL:-https://api.example.com}/mcp",
      "headers": {
        "Authorization": "Bearer ${API_KEY}"
      }
    }
  }
}

Syntax:

  • ${VAR} - Expand environment variable
  • ${VAR:-default} - Use default if not set

Import from Claude Desktop

If MCP servers are already configured in Claude Desktop:

claude mcp add-from-claude-desktop

Imports servers from Claude Desktop configuration (macOS and WSL only).

Add from JSON Configuration

Direct JSON configuration import:

claude mcp add-json <name> '<json-config>'

Example:

claude mcp add-json my-server '{
  "command": "npx",
  "args": ["-y", "server-package"],
  "env": {"API_KEY": "value"}
}'

MCP Output Limits

Control maximum output tokens from MCP tools:

# Set custom limit (default: 25,000 tokens)
export MAX_MCP_OUTPUT_TOKENS=50000
claude

Useful for servers that:

  • Query large datasets
  • Generate detailed reports
  • Process extensive logs

Common MCP Servers

Reference the full MCP documentation for an extensive list of popular MCP servers across categories:

  • Development & Testing: Sentry, Socket, Hugging Face, Jam
  • Project Management: Asana, Atlassian, Linear, Notion, Monday
  • Databases: Airtable, HubSpot, PostgreSQL
  • Payments: PayPal, Plaid, Square, Stripe
  • Design: Figma, Canva, InVideo
  • Infrastructure: Cloudflare, Netlify, Vercel
  • Automation: Workato, Zapier

Resources

references/mcp_documentation.md

Complete MCP documentation including:

  • Comprehensive server directory with installation commands
  • Detailed transport protocol specifications
  • Authentication methods and OAuth flows
  • Plugin-based MCP servers
  • Enterprise MCP configuration
  • Environment variable expansion syntax
  • Practical examples and use cases

Consult when:

  • Need installation command for specific MCP server
  • Troubleshooting complex configuration issues
  • Setting up enterprise MCP deployment
  • Understanding transport protocol details

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.41%
按下载量换算83

Claude

30.51%
按下载量换算69

Cursor

20.67%
按下载量换算47

Gemini CLI

8.62%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills