MCP Servers/gotoHuman
gotoHuman

gotoHuman

Official

Human-in-the-loop platform - Allow AI agents and automations to send requests for approval to your [gotoHuman](https://www.gotohuman.com) inbox.

Human-in-the-loop platform - Allow AI agents and automations to send requests for approval to your [gotoHuman](https://www.gotohuman.com) inbox. This server enables AI agents to interact with gotoHuman to perform various tasks and retrieve information.

From Official Repository
Synced: Jan 24, 2026

Quick Install

npx
npx @gotohuman/mcp-server

MCP Configuration

json
{
  "mcpServers": {
    "gotoHuman": {
      "command": "npx",
      "args": [
        "-y",
        "@gotohuman/mcp-server"
      ],
      "env": {
        "GOTOHUMAN_API_KEY": "your-api-key"
      }
    }
  }
}

Setup Guide

Please refer to the official repository for installation instructions.

How to Connect in Antigravity

To connect to a custom MCP server in Antigravity:

1
Open the MCP store via the "..." dropdown at the top of the editor's agent panel.
2
Click on "Manage MCP Servers"
3
Click on "View raw config"
4
Modify the mcp_config.json with your custom MCP server configuration.

Here is an example configuration compatible with MCP-enabled editors like Antigravity, Windsurf, Claude Desktop, and Cursor:

{
  "mcpServers": {
    "supabase-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@supabase/mcp-server-supabase@latest",
        "--access-token",
        "add-token-here"
      ],
      "env": {}
    },
    "github-mcp-server": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "ghcr.io/github/github-mcp-server"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "add-your-token-here"
      }
    }
  }
}

This configuration defines two servers: one running via npx (Supabase) and another via docker (GitHub). Make sure to replace the placeholder tokens with your actual API keys.

For a detailed step-by-step walkthrough, check out our MCP Tutorial or explore more in our Top 10 Essential MCP Servers guide.

How to Connect in Cursor

To add this MCP server to Cursor:

1
Open Cursor Settings (File > Preferences > Cursor Settings).
2
Navigate to Features > MCP Servers.
3
Click on "Add new MCP server".
4
Enter the Name, Command, and Arguments as specified in the configuration above.

For more details, refer to the official Cursor MCP documentation.

Related Servers