Help

Replit

Replit can use the 101domain MCP Server through a local mcp-remote bridge. This page shows how to store your 101domain API key safely using Replit Secrets and provides a ready‑to‑paste .replit (or agent tool) configuration that connects to https://mcp.101domain.com with the key injected as an environment variable.


Configuration:

In Replit, store your API key using Replit Secrets (the padlock icon in the sidebar) — never put it in a config file inside a Repl, which could be exposed if the Repl is made public. Add a secret named MCP_101DOMAIN_KEY.

Then add a .replit or agent tool config pointing to the MCP server with the secret injected as an environment variable:

{
  "mcpServers": {
    "101domain": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote@0.1.38",
        "https://mcp.101domain.com",
        "--silent"
      ],
      "env": {
        "AUTH_TOKEN": "$MCP_101DOMAIN_KEY"
      }
    }
  }
}