Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计异常

mcp-server-setupMCP server 设置

Agent Skill

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

总安装

420

周安装

17

GitHub Stars

公开资料未说明

下载量

132
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/loxosceles/ai-dev --skill mcp-server-setup

简介

mcp-server-setup 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在初始化阶段配置开发环境。

  • 适用于需要自动化部署或环境配置的 DevOps 场景。
  • 通过脚本生成和依赖检查来简化设置流程,具体用法需结合原始 README 确认。
  • 安装前建议确认系统权限和维护状态,注意可能触发命令执行和文件写入。
  • 使用时应验证配置文件的正确性,避免影响现有服务运行。

SKILL.md

MCP Server Setup

This is a strict guideline. Follow these rules exactly.

MCP server configuration in our devcontainer setup. A single source file is distributed to all agents by post_create.sh.


Single Source of Truth

MCP servers are defined once in ~/.devcontainer-state/ai/mcp/servers.json (gitignored, contains credentials). A committed template exists at servers.json.template.

On container start, post_create.sh distributes this file to:

AgentDestinationHow
Kiro CLI~/.kiro/settings/mcp.jsonCopy
Claude Code~/.claude/settings.jsonMerge mcpServers into existing settings
Amazon Q / Codex${WORKSPACE_ROOT}/.amazonq/mcp.jsonCopy

VS Code / Copilot is the exception — .vscode/mcp.json uses a different format (servers key, ${ENV_VAR} refs) and is committed to the repo. Maintain it separately.


Source File Format

{
  "mcpServers": {
    "server-name": {
      "command": "npx",
      "args": ["-y", "package-name"],
      "env": {
        "ENV_VAR": "value"
      }
    }
  }
}

This format is shared by Kiro, Claude, and Amazon Q.


VS Code Format

Different top-level key, env var references instead of raw values:

{
  "servers": {
    "server-name": {
      "command": "npx",
      "args": ["-y", "package-name"],
      "env": {
        "ENV_VAR": "${ENV_VAR}"
      }
    }
  }
}

Known Servers and Their Env Vars

Use the exact env var names listed here. Mismatched names are the most common setup failure.

Trello (mcp-server-trello)

TRELLO_API_KEY    — from https://trello.com/app-key
TRELLO_TOKEN      — NOT "TRELLO_API_TOKEN"
TRELLO_BOARD_ID   — optional, found in board URL

GitHub (@modelcontextprotocol/server-github)

GITHUB_PERSONAL_ACCESS_TOKEN  — or GITHUB_TOKEN

Adding a New MCP Server

1. Test the server manually in the container

echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}' \
  | ENV_VAR=value timeout 5 npx -y <package-name> 2>/dev/null

Expected: a JSON response with result.serverInfo. If you get an error about missing env vars, the var names are wrong — check the server's source or README.

2. Add to the source file

Edit ~/.devcontainer-state/ai/mcp/servers.json on the host. Add the server entry with the exact env var names from the test.

3. Rebuild or re-run post_create.sh

The config is distributed on container start. Either rebuild the container or run post_create.sh manually.

4. Update VS Code config separately

If using Copilot, add the server to .vscode/mcp.json in the project repo using the servers format with ${ENV_VAR} references.


Devcontainer Considerations

  • Global npm packages persist across rebuilds via ~/.cache/npm-global (on the cache mount).
  • Credentials stay in devcontainer-state (gitignored). They never appear in project repos — .amazonq/ is gitignored, VS Code uses env var refs.
  • One edit, all agents — change servers.json once, rebuild, and Kiro/Claude/Amazon Q all get the update.

Troubleshooting

SymptomCauseFix
Server not foundPackage not installednpm install -g <package>
"missing env var" errorWrong env var nameCheck Known Servers section; test manually
Server starts but agent can't connectConfig in wrong file or wrong formatCheck mcpServers vs servers key
Config missing after rebuildservers.json not on hostCheck ~/.devcontainer-state/ai/mcp/servers.json exists
Agent doesn't see config changesStale sessionRestart the agent session
MCP warning on container startservers.json not created yetcp servers.json.template servers.json and fill in credentials

Progressive Improvement

If the developer corrects a behavior that this skill should have prevented, suggest a specific amendment to this skill to prevent the same correction in the future.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.01%
按下载量换算48

Claude

30.03%
按下载量换算40

Cursor

18.6%
按下载量换算25

Gemini CLI

9.3%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills