返回 MCP 目录
public公开dns本地运行

usewebhook-mcp

一个基于UseWebhook的MCP服务器,用于生成、测试和调试Webhook端点,支持请求检查、重放和转发功能。

article

README

🚀 usewebhook - mcp

用于生成和检查Webhook的模型上下文协议(MCP)服务器,可帮助开发者高效测试和管理Webhook相关功能。

✨ 主要特性

  • ⚡ 生成用于测试的Webhook端点。
  • 🔍 检查并对比HTTP请求的有效负载。
  • 🔁 从历史记录中重放请求。
  • 🔀 将请求转发到你的localhost
  • ⚡️ 由 UseWebhook 提供支持。

📦 安装指南

通过Smithery安装

通过 [Smithery](https://smithery.ai/server/@figstra/usewebhook - mcp) 为Claude Desktop安装usewebhook - mcp:

npx -y @smithery/cli install @figstra/usewebhook-mcp --client claude

手动安装

  1. 克隆仓库:
git clone https://github.com/figstra/usewebhook-mcp.git
  1. 安装依赖:
cd usewebhook-mcp
npm install
  1. 构建项目:
npm run build
  1. 在你的Claude MCP设置文件中配置服务器:
{
   "mcpServers": {
    "usewebhook-mcp": {
      "command": "node",
      "args": ["path/to/your/usewebhook-mcp/build/index.js"],
      "disabled": false,
      "autoApprove": []
    }
  }
}

💻 使用示例

开发环境

# 安装依赖
npm install

# 启动开发服务器
npm run dev

📄 许可证

本项目采用MIT许可证。详情请参阅 LICENSE 文件。

help

运行方式说明

cloud

托管运行

托管运行通常表示这个 MCP Server 由服务方环境承载,用户一般按页面提供的连接方式或授权流程接入,不需要在本地长期启动一个 MCP 进程

  1. 打开服务方连接页
  2. 完成授权或复制端点
  3. 在 MCP 客户端中连接
terminal

本地运行 / 其它方式

本地运行通常需要用户在自己的电脑或服务器上安装依赖,把 server_config 复制到 MCP 客户端,并按 env_schema 补齐环境变量、密钥或其它配置

  1. 复制 server_config
  2. 安装所需依赖
  3. 补齐环境变量后重启客户端