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

setup-mcp设置 MCP

Agent Skill

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

总安装

941

周安装

40

GitHub Stars

5

下载量

330
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/deepgram/skills --skill setup-mcp

简介

deepgram-skills-setup-mcp 配置 Deepgram MCP 服务器集成,支持 CLI 工具链对接。

  • 适用于 Claude Code 或其他 AI 编码工具调用 Deepgram 原生功能(如项目管理)。
  • 自动检测 dg 命令行是否存在,否则引导安装并适配不同宿主环境。
  • 需具备公网 HTTPS 端点用于回调接收,并妥善保管 API 密钥避免泄露风险。
  • setup-mcp 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Install the Deepgram MCP Server

You are setting up Deepgram MCP integration for the user. Follow these steps:

Step 1: Check for the Deepgram CLI

Run dg --version (or deepctl --version, or where dg on Windows) to check if the Deepgram CLI is installed.

  • If found: use the local CLI MCP (dg mcp) — this gives full access to Deepgram tools including transcription, text-to-speech, project management, and more.
  • If not found: use the hosted documentation MCP and offer to install the CLI.

Step 2: Detect the environment

Determine which AI coding tool the user is running. Check for:

  • Claude Code — look for a .claude/ directory in the project or user home
  • Cursor — look for a .cursor/ directory in the project root
  • Windsurf — look for a .windsurf/ directory in the project root

If multiple are detected, or none are detected, ask the user which tool they want to configure.

Step 3: Ask about scope

Ask the user whether they want the MCP server configured:

  • For this project only (recommended for team repos)
  • Globally (available in all projects)

Step 4: Install


If the Deepgram CLI (dg) IS installed — use the local CLI MCP

Claude Code

# Project scope
claude mcp add deepgram --scope project dg mcp

# User/global scope
claude mcp add deepgram dg mcp

Cursor

Write or merge into the project's .cursor/mcp.json:

{
  "mcpServers": {
    "deepgram": {
      "command": "dg",
      "args": ["mcp"]
    }
  }
}

Windsurf

Write or merge into the project's .windsurf/mcp.json:

{
  "mcpServers": {
    "deepgram": {
      "command": "dg",
      "args": ["mcp"]
    }
  }
}

Other tools

Provide the MCP server command and let them configure manually:

  • Transport: stdio
  • Command: dg
  • Args: ["mcp"]

If the Deepgram CLI is NOT installed — use the hosted docs MCP

Tell the user:

The Deepgram CLI isn't installed. You can either: 1. Install the CLI (pipx install deepctl) for full Deepgram tool access, then re-run /deepgram:setup-mcp 2. Use the hosted MCP for documentation queries right now

If they choose the hosted MCP (or want it alongside the CLI):

Claude Code

# Project scope
claude mcp add deepgram-docs --scope project --transport http https://api.dx.deepgram.com/kapa/mcp

# User/global scope
claude mcp add deepgram-docs --transport http https://api.dx.deepgram.com/kapa/mcp

Cursor

Write or merge into the project's .cursor/mcp.json:

{
  "mcpServers": {
    "deepgram-docs": {
      "type": "http",
      "url": "https://api.dx.deepgram.com/kapa/mcp"
    }
  }
}

Windsurf

Write or merge into the project's .windsurf/mcp.json:

{
  "mcpServers": {
    "deepgram-docs": {
      "type": "http",
      "url": "https://api.dx.deepgram.com/kapa/mcp"
    }
  }
}

Other tools

Provide the MCP server details and let them configure manually:

  • Type: HTTP
  • URL: https://api.dx.deepgram.com/kapa/mcp

Step 5: Confirm

After installation:

  • Claude Code — run /reload-plugins to activate immediately, no restart needed.
  • Cursor / Windsurf / Other — the user may need to restart or reload their tool.

Then tell the user:

The Deepgram MCP server is now configured.

If using the CLI MCP (dg mcp), add:

Available tools include transcription, text-to-speech, project management, and usage queries. Try asking to transcribe an audio file or convert text to speech.

If using the hosted docs MCP, add:

Your tool can now query Deepgram's full documentation directly — try asking about API parameters, voice agents, or model capabilities.

Link them to Deepgram Agentic Tools for more details.

Troubleshooting

If the MCP server fails to connect:

  1. For the CLI MCP: verify dg --version works and dg mcp runs without errors. Update with pipx upgrade deepctl or pip install --upgrade deepctl.
  2. For the hosted MCP: verify the URL https://api.dx.deepgram.com/kapa/mcp is accessible.
  3. To install the CLI: pipx install deepctl

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.87%
按下载量换算125

Claude

27.3%
按下载量换算90

Cursor

17.34%
按下载量换算57

Gemini CLI

9.33%
按下载量换算31

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills