by gotohuman
Enables AI agents to request human approvals through a managed asynchronous workflow with customizable UI, built‑in authentication, webhooks, and team collaboration.
Provides a fully‑managed, asynchronous human‑in‑the‑loop service that AI agents can invoke via the Model Context Protocol (MCP). It presents approval requests in a customizable UI, handles authentication, notifications, and webhook callbacks, and maintains a training dataset from completed reviews.
npx @gotohuman/mcp-server
to install the server.npx
command and set the GOTOHUMAN_API_KEY
environment variable.list-forms
– retrieve available review forms.get-form-schema
– obtain the JSON schema for a specific form.request-human-review-with-form
– submit a review request, optionally assigning users and attaching metadata.Q: Do I need to run a separate server?
A: No, the package runs as a local Node.js process invoked via npx
and can be started directly from your MCP client configuration.
Q: Which environment variable holds the API key?
A: GOTOHUMAN_API_KEY
.
Q: Can I assign a review to specific users?
A: Yes, use the assignToUsers
parameter in the request-human-review-with-form
tool.
Q: How do I get the form schema?
A: Call the get-form-schema
tool with the desired formId
.
Q: Is the service compatible with all MCP‑enabled editors? A: It works with any client that supports MCP, including Cursor, Claude, Windsurf, and custom integrations.
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.
npx @gotohuman/mcp-server
{
"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
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
list-forms
List all available review forms.
get-form-schema
Get the schema to use when requesting a human review for a given form.
formId
: The form ID to fetch the schema forrequest-human-review-with-form
Request a human review. Will appear in your gotoHuman inbox.
formId
: The form ID for the reviewfieldData
: Content (AI-output to review, context,...) and configuration for the form's fields.get-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# Install dependencies
npm install
# Build the server
npm run build
# For testing: Run the MCP inspector
npm run inspector
{
"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
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "gotoHuman": { "command": "npx", "args": [ "-y", "@gotohuman/mcp-server" ], "env": { "GOTOHUMAN_API_KEY": "<YOUR_API_KEY>" } } } }
Discover more MCP servers with similar functionality and use cases
by zed-industries
Provides real-time collaborative editing powered by Rust, enabling developers to edit code instantly across machines with a responsive, GPU-accelerated UI.
by cline
Provides autonomous coding assistance directly in the IDE, enabling file creation, editing, terminal command execution, browser interactions, and tool extension with user approval at each step.
by continuedev
Provides continuous AI assistance across IDEs, terminals, and CI pipelines, offering agents, chat, inline editing, and autocomplete to accelerate software development.
by github
Enables AI agents, assistants, and chatbots to interact with GitHub via natural‑language commands, providing read‑write access to repositories, issues, pull requests, workflows, security data and team activity.
by block
Automates engineering tasks by installing, executing, editing, and testing code using any large language model, providing end‑to‑end project building, debugging, workflow orchestration, and external API interaction.
by RooCodeInc
An autonomous coding agent that lives inside VS Code, capable of generating, refactoring, debugging code, managing files, running terminal commands, controlling a browser, and adapting its behavior through custom modes and instructions.
by lastmile-ai
A lightweight, composable framework for building AI agents using Model Context Protocol and simple workflow patterns.
by firebase
Provides a command‑line interface to manage, test, and deploy Firebase projects, covering hosting, databases, authentication, cloud functions, extensions, and CI/CD workflows.
by gptme
Empowers large language models to act as personal AI assistants directly inside the terminal, providing capabilities such as code execution, file manipulation, web browsing, vision, and interactive tool usage.