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¶
{
"mcpServers": {
"moveris": {
"url": "https://mcp.moveris.com/mcp",
"transport": "streamableHttp",
"headers": {
"X-API-KEY": "sk-your-api-key"
}
}
}
}
- Replace
sk-your-api-keywith your actual Moveris API key. - Restart Cursor — The Moveris tools should appear in the MCP panel.
Claude Desktop¶
- Open
claude_desktop_config.json: - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json -
Linux:
~/.config/claude/claude_desktop_config.json -
Add the Moveris server (Claude Desktop uses
mcp-proxyfor 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"
]
}
}
}
- Replace
sk-your-api-keywith your actual Moveris API key. - 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.
ChatGPT¶
ChatGPT supports MCP via Custom Connectors (ChatGPT Business, Enterprise, and Edu plans). Developer mode must be enabled by an admin.
- Go to Settings → Apps & Connectors → Advanced settings and enable Developer mode.
- Go to Settings → Connectors → Create (or Add custom connector).
- Enter the connector details:
- Name: Moveris
- Description: Liveness verification and human presence attestation
- URL:
https://mcp.moveris.com/mcp - Configure authentication to send your API key in the
X-API-KEYheader (use the header/API key option if available). - 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.
Microsoft Copilot (Copilot Studio)¶
Copilot Studio supports MCP with Streamable transport. Add the Moveris server via the MCP wizard.
- In Copilot Studio, open your agent and go to Tools or Add capability → MCP server.
- Add an existing MCP server:
- URL:
https://mcp.moveris.com/mcp - Transport: Streamable HTTP
- Set authentication to API Key and choose Request header:
- Header name:
X-API-KEY - Value: your Moveris API key
- Save and publish your agent.
Meta AI (MetaMCP)¶
MetaMCP is a self-hostable middleware that connects MCP servers to Meta’s ecosystem. Add Moveris as a STREAMABLE_HTTP server.
- Access your MetaMCP instance (e.g.
http://localhost:12008). - Add a new MCP server with:
- Type: STREAMABLE_HTTP
- URL:
https://mcp.moveris.com/mcp - Headers: Add
X-API-KEYwith your Moveris API key (or use bearer token / env interpolation if your MetaMCP version supports it) - Save and ensure the server is running and reachable.
Windsurf¶
- Edit
~/.codeium/windsurf/mcp_config.json. - Add the Moveris server:
{
"mcpServers": {
"moveris": {
"serverUrl": "https://mcp.moveris.com/mcp",
"headers": {
"X-API-KEY": "sk-your-api-key"
}
}
}
}
- Replace
sk-your-api-keywith your actual Moveris API key. - Restart Windsurf — The Moveris tools should appear in Cascade.
Cline¶
- Edit
cline_mcp_settings.json(path varies by editor): - VS Code (Linux):
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json -
Windows:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json -
Add the Moveris server:
{
"mcpServers": {
"moveris": {
"type": "streamableHttp",
"url": "https://mcp.moveris.com/mcp",
"headers": {
"X-API-KEY": "sk-your-api-key"
}
}
}
}
- Replace
sk-your-api-keywith your actual Moveris API key. - Restart Cline or reload the window.
Next Steps¶
- Quick Start — Overview and setup flow
- Tools Reference — Available tools and parameters
- Errors — Handling errors and retries