# Agent Quickstart One prompt for an agent to connect Krev and find the best places to use it in a codebase. ## Copy this prompt Paste this into Claude Code, Codex, Cursor, or another coding agent while it is running in the project directory: ```text Set up Krev MCP for this project. Krev is an ecommerce creative platform. Its MCP server gives agents product catalog lookup, Brand DNA, taste memory, creative options, product image generation, image editing, reference recreation, Amazon listing images, product video generation, ad generation, ad-library research, generation status, credit checks, and read-only Meta/TikTok campaign performance. Server URL: https://app.krev.ai/mcp Auth reference: https://www.krev.ai/auth.md Quickstart: https://www.krev.ai/agent-quickstart.md Work in this order: 1. Detect the client I am using. - If this is ChatGPT, tell me to add a connector with URL https://app.krev.ai/mcp. ChatGPT should link my Krev account through OAuth in the browser. - If this is Claude Code, Codex, OpenClaw, Hermes, Cursor, or another MCP client with bearer headers, check whether I already provided a Krev key that starts with mcp_live_. - If no key is available, tell me to create one in Krev Settings > Agent Connections and paste it into this chat or set it as an environment variable. Do not ask me to print it if it is already configured. 2. Install Krev MCP. - Claude Code: claude mcp add --transport http krev https://app.krev.ai/mcp --header "Authorization: Bearer mcp_live_..." && claude mcp get krev - Codex: export KREV_MCP_KEY=mcp_live_...; codex mcp add krev --url https://app.krev.ai/mcp --bearer-token-env-var KREV_MCP_KEY; codex mcp list - Cursor: Add a remote HTTP MCP server named krev with URL https://app.krev.ai/mcp and Authorization bearer header. - Generic MCP clients: Use HTTP or Streamable HTTP transport, URL https://app.krev.ai/mcp, and Authorization: Bearer mcp_live_... 3. Verify the connection. - Call the Krev MCP health tool or list tools. - Do not continue if authentication fails. - Never print the secret key. 4. Scan this repo for Krev opportunities. Look for: - product catalogs, Shopify sync, ecommerce products, SKUs, listing images - image generation, photo editing, background removal, resize, or ad creative code - video generation or product video workflows - ad research, inspiration galleries, competitor research, Meta/TikTok reporting - onboarding that asks for brand website, product URL, catalog, logo, style, or brand context - manual creative briefs that could use Brand DNA or catalog context 5. Propose before editing. Return a numbered list with file paths, what Krev would replace or augment, which MCP tools apply, and the user-visible benefit. Ask me which items to implement before touching files. ``` ## Direct setup snippets Claude Code: ```bash claude mcp add --transport http krev https://app.krev.ai/mcp --header "Authorization: Bearer mcp_live_..." && claude mcp get krev ``` Codex: ```bash export KREV_MCP_KEY=mcp_live_... codex mcp add krev --url https://app.krev.ai/mcp --bearer-token-env-var KREV_MCP_KEY codex mcp list ``` Generic MCP config: ```json { "mcpServers": { "krev": { "type": "http", "url": "https://app.krev.ai/mcp", "headers": { "Authorization": "Bearer mcp_live_..." } } } } ```