Skip to main content
The Autousers MCP server lets you run UX evaluations without leaving your AI coding tool. Connect once and you can create evaluations, queue autousers against live URLs, read results, and calibrate personas — all from Claude, Cursor, VS Code, ChatGPT, or any MCP-aware client. The server is hosted at https://mcp.autousers.ai/mcp; no package installation is required for most clients.

Connect

Authentication

OAuth is recommended for interactive sessions (Claude.ai, Claude Desktop, Cursor, VS Code, ChatGPT). API keys are the right choice for CI pipelines and headless scripts.

OAuth 2.1

When you add the server URL to a supported client, an OAuth 2.1 PKCE flow launches in the browser. After you approve, the client receives a short-lived access token (~15 minutes) that rotates automatically via a refresh token. No static credentials are stored on the client.

API keys

API keys are long-lived bearer tokens for headless environments. Pass them as Authorization: Bearer ak_live_... — either as an HTTP header in direct-URL clients or as the AUTOUSERS_API_KEY environment variable for stdio. Mint keys at app.autousers.ai/settings/api-keys. Keys are shown once at creation — store them in a secrets manager immediately.

Scopes

Tools

The server exposes 39 tools across four categories. Read-only tools carry readOnlyHint=true and are safe to call without side effects.

Templates (6)

Evaluations (14)

Autousers (15)

Settings (4)

Prompts

Five canned workflows are registered as MCP prompts. Invoke them from your client’s slash menu — the server pre-fetches relevant data and guides the AI through each workflow end-to-end.

Resources

Three readable resource URIs let your AI client fetch structured data directly:

Configuration

Diagnostics

Run the bundled doctor command to verify your configuration:
It checks that AUTOUSERS_API_KEY is set (for stdio auth), that the API host is reachable, and that at least one tool call succeeds. The command exits non-zero on any misconfiguration, so it integrates cleanly into CI pre-flight checks.