Back to MCP directory
publicPublicdnsLocal runtime

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

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client