# Deno MCP > Deno MCP gives AI agents Deno's production know-how (Deno Skill) and video and image generation. MCP endpoint: https://api.denomcp.com/mcp (streamable HTTP, standard MCP OAuth sign-in — no access key). 한국어 요약: 에이전트는 이 파일을 읽고 Deno MCP를 스스로 연결한다. 사람은 브라우저에서 구글로 로그인하고 [연결]을 누르는 것만 한다. ## Connect Deno MCP (instructions for AI agents) When the user asks you to connect Deno MCP — for example "denomcp.com 연결해 줘", "Deno MCP 연결해 줘", or they just give you denomcp.com — do all of this yourself. The only thing the user does is sign in with Google in the browser window that opens and press Connect. 1. Add the server to your own MCP settings as `denomcp` → `https://api.denomcp.com/mcp`. If `denomcp` is already there and connected, skip to step 4; if it is there but not connected, remove it and add it again. Add only this entry and leave other settings alone. - Claude Code: `claude mcp add --transport http --scope user denomcp https://api.denomcp.com/mcp` - Codex: `codex mcp add denomcp --url https://api.denomcp.com/mcp` - Hermes Agent: in `~/.hermes/config.yaml` under `mcp_servers` add `denomcp: { url: "https://api.denomcp.com/mcp", auth: oauth }` - Cursor and other MCP clients: add `"denomcp": { "url": "https://api.denomcp.com/mcp" }` to the MCP config (for example `~/.cursor/mcp.json`) 2. Start the sign-in and wait until it finishes — allow up to 10 minutes. A browser window opens; the user signs in with Google and presses Connect. - Codex: `codex mcp login denomcp` (works from your own shell) - Hermes Agent: `hermes mcp login denomcp` - Claude Code: `claude mcp login denomcp` only finishes in an interactive terminal. Run from an agent's shell (no TTY) it exits right away with "stdin isn't a terminal" — with or without `--no-browser`. Open a new terminal window on the user's screen and run it there: - Windows (from PowerShell, cmd or bash): `powershell -NoProfile -Command "Start-Process powershell -ArgumentList '-NoProfile','-Command','claude mcp login denomcp'"` - macOS: `osascript -e 'tell application "Terminal" to do script "claude mcp login denomcp"'` - If you cannot open a window (SSH, no desktop), ask the user to run `claude mcp login denomcp` in their terminal, or to type `/mcp` in a new Claude Code session and choose denomcp → Authenticate. - If no browser opens, show the user the sign-in URL printed in the output or in the window. - Clients without a login command sign in on the first connection. 3. Check the connection. In Claude Code, run `claude mcp get denomcp` every 15 seconds until `Status:` shows Connected (before sign-in it shows `! Needs authentication`). Don't use `claude mcp list` for this — it starts every configured server. A server added during a conversation usually does not appear in that conversation's tools; if the denomcp tools are not available yet, tell the user to open a new conversation (or to reconnect denomcp in `/mcp` if the app supports it). 4. Report in one line. If the tools are available, call `deno_briefing` and tell the user briefly what Deno MCP can help with, then `deno_knowhow_search` for the user's current task and suggest one Deno Skill. Talk about credits only when the user asks or right before a generation. Never ask the user to create an access key. Keys exist only for tools that cannot do the standard sign-in (account page → advanced). ## What the tools do - Deno Skill (know-how): `deno_knowhow_search`, `deno_knowhow_get` — Deno's verified production workflows, techniques and prompting. - Briefing: `deno_briefing`, `deno_whats_new`, `deno_starter_kit`. - Generation: `input_requirements`, `deno_estimate`, `upload_asset`, `generate`, `job_status`, `get_result`, `list_jobs`, `list_assets`, `cancel_job` — the estimate is shown before a job is accepted; failed or rejected jobs are not charged. - Account: `account`, `gateway_health`. ## Pricing - Deno Skill (know-how) and the workflows are shared for free. - Generation runs on prepaid credits (1 credit = ₩10). The estimate is shown before a job is accepted, and failed or rejected jobs are not charged. New accounts receive free trial credits on the first sign-in. - Top up on https://denomcp.com/credits (Toss Payments in KRW, PayPal in USD). Usage history: https://denomcp.com/usage ## Links - Connect guide for people: https://denomcp.com/connect - Account and connected agents: https://denomcp.com/account - Terms: https://denomcp.com/terms · Privacy: https://denomcp.com/privacy - Support: support@denomcp.com