Command Palette

Search for a command to run...

Docs/MCP and CLI/Quickstart

Quickstart

Copy a prompt or use exact commands to connect an AI agent to Wyatt through MCP.

Use Wyatt's public MCP server to connect an AI agent. You can give the setup prompt to an agent with shell access, or use the exact configuration underneath.

MCP Quickstart

Give This Prompt to Your Agent

Connect Wyatt as a remote MCP server named "wyatt" using
https://www.wyattworks.ai/api/mcp-server. Use Streamable HTTP and OAuth.
Open the authorization flow for me, then verify the connection by listing
the available Wyatt tools. Do not ask me to create or paste an API key.

Codex

bash
codex mcp add wyatt --url https://www.wyattworks.ai/api/mcp-server
codex mcp login wyatt
codex mcp list

Claude Code

bash
claude mcp add --transport http --scope user wyatt https://www.wyattworks.ai/api/mcp-server
claude mcp list

Start Claude Code and run /mcp to complete or inspect authorization.

Cursor

Add Wyatt to ~/.cursor/mcp.json for all projects or .cursor/mcp.json for one project:

json
{
"mcpServers": {
"wyatt": {
"url": "https://www.wyattworks.ai/api/mcp-server"
}
}
}

Open Cursor Settings > Tools & MCP, enable Wyatt, and complete OAuth.

OpenClaw

bash
openclaw mcp set wyatt '{"url":"https://www.wyattworks.ai/api/mcp-server","transport":"streamable-http","auth":"oauth"}'
openclaw mcp login wyatt
openclaw mcp doctor wyatt --probe

If OpenClaw prints an authorization code after browser approval, finish with openclaw mcp login wyatt --code <code>.

CLI Availability

The Wyatt CLI is a private developer preview and does not currently have a supported public installer. Use the MCP setup above for external AI agents. Do not install unofficial packages that claim to be the Wyatt CLI.

Next Steps