Gotohuman Mcp 伺服器
概覽
gotohuman-mcp-server 是什麼?
gotohuman-mcp-server 是一個托管在 GitHub 上的公共存儲庫,由用戶 ### gotohuman 創建。這個伺服器旨在促進與 MCP(多通道平台)相關的各種功能,這對於以一致的方式管理和整合多個通信渠道至關重要。該存儲庫包含源代碼、文檔和其他資源,供開發者使用和貢獻於該項目。
gotohuman-mcp-server 的特點
- 多通道整合:該伺服器支持跨多個通信渠道的整合,允許無縫互動和數據交換。
- 開源:作為公共存儲庫,它鼓勵來自全球的開發者進行合作和貢獻。
- 文檔:提供全面的文檔,幫助用戶理解功能及如何有效實施。
- 活躍社區:該存儲庫擁有不斷增長的貢獻者和用戶社區,促進了增強和支持的合作環境。
- 許可證:該項目根據 MIT 許可證進行授權,促進自由使用、修改和分發軟件。
如何使用 gotohuman-mcp-server
-
克隆存儲庫:首先使用以下命令將存儲庫克隆到本地機器:
git clone https://github.com/gotohuman/gotohuman-mcp-server.git
-
安裝依賴項:導航到項目目錄並安裝必要的依賴項。這通常可以使用 npm 或 yarn 等包管理器完成:
cd gotohuman-mcp-server npm install
-
配置:根據您的需求配置伺服器設置。這可能涉及編輯配置文件或設置環境變量。
-
啟動伺服器:使用以下命令啟動伺服器:
npm start
-
訪問 API:一旦伺服器運行,您可以根據存儲庫中的文檔訪問 API 端點,以便與您的應用程序集成。
常見問題解答
gotohuman-mcp-server 使用了哪些編程語言?
該項目主要使用 JavaScript 和 Node.js,使其對熟悉這些技術的開發者來說更易於接觸。
我該如何貢獻於 gotohuman-mcp-server?
歡迎貢獻!您可以分叉存儲庫,進行更改,並提交拉取請求。請確保遵循存儲庫中概述的貢獻指南。
是否有社區提供支持?
是的,您可以通過存儲庫的問題部分找到支持,或與其他用戶和貢獻者進行討論。
gotohuman-mcp-server 的許可證是什麼?
該項目根據 MIT 許可證進行授權,允許用戶自由使用、修改和分發軟件。
我該如何報告錯誤或問題?
您可以通過在存儲庫的問題部分創建新問題來報告錯誤或問題,提供盡可能多的詳細信息,以幫助維護者有效解決問題。
詳細
gotoHuman MCP Server
gotoHuman makes it easy to add human approvals to AI agents and agentic workflows.
A fully-managed async human-in-the-loop workflow with a customizable approval UI.
Enjoy built-in auth, webhooks, notifications, team features, and an evolving training dataset.
Use our MCP server to request human approvals from your AI workflows via MCP or add it to your IDE to help with integration.
Installation
npx @gotohuman/mcp-server
Use with Cursor / Claude / Windsurf
{
"mcpServers": {
"gotoHuman": {
"command": "npx",
"args": ["-y", "@gotohuman/mcp-server"],
"env": {
"GOTOHUMAN_API_KEY": "your-api-key"
}
}
}
}
Get your API key and set up an approval step at app.gotohuman.com
Demo
This is Cursor on the left, but this could be a background agent that also reacts to the approval webhook.
https://github.com/user-attachments/assets/380a4223-ea77-4e24-90a5-52669b77f56f
Tools
list-forms
List all available review forms.
- Returns a list of all available forms in your account incl. high-level info about the added fields
get-form-schema
Get the schema to use when requesting a human review for a given form.
- Params
formId
: The form ID to fetch the schema for
- Returns the schema, considering the incl. fields and their configuration
request-human-review-with-form
Request a human review. Will appear in your gotoHuman inbox.
- Params
formId
: The form ID for the reviewfieldData
: Content (AI-output to review, context,...) and configuration for the form's fields.
The schema for this needs to be fetched withget-form-schema
metadata
: Optional additional data that will be incl. in the webhook response after form submissionassignToUsers
: Optional list of user emails to assign the review to
- Returns a link to the review in gotoHuman
Development
### Install dependencies
npm install
### Build the server
npm run build
### For testing: Run the MCP inspector
npm run inspector
Run locally in MCP Client (e.g. Cursor / Claude / Windsurf)
{
"mcpServers": {
"gotoHuman": {
"command": "node",
"args": ["/<absolute-path>/build/index.js"],
"env": {
"GOTOHUMAN_API_KEY": "your-api-key"
}
}
}
}
[!NOTE] For Windows, the
args
path needs to beC:\\<absolute-path>\\build\\index.js
伺服器配置
{
"mcpServers": {
"gotohuman-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--gotohuman--gotohuman-mcp-server--gotohuman-mcp-server",
"node ./build/index.js"
],
"env": {
"GOTOHUMAN_API_KEY": "gotohuman-api-key"
}
}
}
}