usewebhook-mcp
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"usewebhook-mcp": {
"args": [
"path/to/your/usewebhook-mcp/build/index.js"
],
"autoApprove": [],
"command": "node",
"disabled": false
}
}
}
服务介绍
usewebhook-mcp
Model Context Protocol (MCP) server for generating and inspecting webhooks
Features
- Generate webhook endpoints for testing
- Inspect and diff HTTP request payloads
- Replay requests from history
- Forward requests to your
localhost - Powered by UseWebhook
Installation
Via Smithery
Install usewebhook-mcp for Claude Desktop via Smithery:
npx -y @smithery/cli install @figstra/usewebhook-mcp --client claude
Manual installation
- Clone the repository:
git clone https://github.com/figstra/usewebhook-mcp.git
- Install dependencies:
cd usewebhook-mcp
npm install
- Build the project:
npm run build
- Configure the server in your Claude MCP settings file:
{
"mcpServers": {
"usewebhook-mcp": {
"command": "node",
"args": ["path/to/your/usewebhook-mcp/build/index.js"],
"disabled": false,
"autoApprove": []
}
}
}
Development
# Install dependencies
npm install
# Start the development server
npm run dev
License
This project is licensed under the MIT License. See the LICENSE file for details.