Skip to content

Agent Configurations

Step-by-step configuration for connecting the Moveris MCP server to the most common AI agents and development tools.

In plain terms

Each agent has its own config file and format. Use this page as a reference—pick your tool, follow the steps, and add the Moveris URL plus your API key in the X-API-KEY header.

Common Values

Setting Value
URL https://mcp.moveris.com/mcp
Transport HTTPStream / streamableHttp
API key header X-API-KEY

Cursor

  1. Open Cursor SettingsMCP (or edit ~/.cursor/mcp.json).
  2. Add the Moveris server:
{
  "mcpServers": {
    "moveris": {
      "url": "https://mcp.moveris.com/mcp",
      "transport": "streamableHttp",
      "headers": {
        "X-API-KEY": "sk-your-api-key"
      }
    }
  }
}
  1. Replace sk-your-api-key with your actual Moveris API key.
  2. Restart Cursor — The Moveris tools should appear in the MCP panel.

More information here.


Claude Desktop

  1. Open claude_desktop_config.json:
  2. macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  3. Windows: %APPDATA%\Claude\claude_desktop_config.json
  4. Linux: ~/.config/claude/claude_desktop_config.json

  5. Add the Moveris server (Claude Desktop uses mcp-proxy for remote HTTP):

{
  "mcpServers": {
    "moveris": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-proxy",
        "--transport",
        "streamablehttp",
        "--header",
        "X-API-KEY: sk-your-api-key",
        "https://mcp.moveris.com/mcp"
      ]
    }
  }
}
  1. Replace sk-your-api-key with your actual Moveris API key.
  2. Restart Claude Desktop completely.

More information here. For remote servers with mcp-proxy: mcp-proxy (npm).


Gemini CLI

Run in your terminal:

gemini mcp add --transport http --header "X-API-KEY: sk-your-api-key" moveris https://mcp.moveris.com/mcp

Replace sk-your-api-key with your actual Moveris API key.

More information here.


ChatGPT

ChatGPT supports MCP via Custom Connectors (ChatGPT Business, Enterprise, and Edu plans). Developer mode must be enabled by an admin.

  1. Go to SettingsApps & ConnectorsAdvanced settings and enable Developer mode.
  2. Go to SettingsConnectorsCreate (or Add custom connector).
  3. Enter the connector details:
  4. Name: Moveris
  5. Description: Liveness verification and human presence attestation
  6. URL: https://mcp.moveris.com/mcp
  7. Configure authentication to send your API key in the X-API-KEY header (use the header/API key option if available).
  8. Save and test the connection.

ChatGPT connector UI

The exact auth fields vary by plan. Use the API key / custom header option and set the header name to X-API-KEY with your Moveris API key value.

More information here.


Microsoft Copilot (Copilot Studio)

Copilot Studio supports MCP with Streamable transport. Add the Moveris server via the MCP wizard.

  1. In Copilot Studio, open your agent and go to Tools or Add capabilityMCP server.
  2. Add an existing MCP server:
  3. URL: https://mcp.moveris.com/mcp
  4. Transport: Streamable HTTP
  5. Set authentication to API Key and choose Request header:
  6. Header name: X-API-KEY
  7. Value: your Moveris API key
  8. Save and publish your agent.

More information here.


Meta AI (MetaMCP)

MetaMCP is a self-hostable middleware that connects MCP servers to Meta’s ecosystem. Add Moveris as a STREAMABLE_HTTP server.

  1. Access your MetaMCP instance (e.g. http://localhost:12008).
  2. Add a new MCP server with:
  3. Type: STREAMABLE_HTTP
  4. URL: https://mcp.moveris.com/mcp
  5. Headers: Add X-API-KEY with your Moveris API key (or use bearer token / env interpolation if your MetaMCP version supports it)
  6. Save and ensure the server is running and reachable.

More information here.


Windsurf

  1. Edit ~/.codeium/windsurf/mcp_config.json.
  2. Add the Moveris server:
{
  "mcpServers": {
    "moveris": {
      "serverUrl": "https://mcp.moveris.com/mcp",
      "headers": {
        "X-API-KEY": "sk-your-api-key"
      }
    }
  }
}
  1. Replace sk-your-api-key with your actual Moveris API key.
  2. Restart Windsurf — The Moveris tools should appear in Cascade.

More information here.


Cline

  1. Edit cline_mcp_settings.json (path varies by editor):
  2. VS Code (Linux): ~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
  3. Windows: %APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json

  4. Add the Moveris server:

{
  "mcpServers": {
    "moveris": {
      "type": "streamableHttp",
      "url": "https://mcp.moveris.com/mcp",
      "headers": {
        "X-API-KEY": "sk-your-api-key"
      }
    }
  }
}
  1. Replace sk-your-api-key with your actual Moveris API key.
  2. Restart Cline or reload the window.

More information here.


Next Steps