[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-render-mcp":3,"mdc-glwqqs-key":36,"related-org-openai-render-mcp":1740,"related-repo-openai-render-mcp":1941},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"render-mcp","configure Render MCP server","Connects and configures the Render MCP server for AI coding tools—setup per tool (Cursor, Claude Code, Codex), authentication, workspace selection, tool catalog, and troubleshooting. Use when MCP is not configured, list_services() fails, the user asks about Render MCP setup, or an action skill needs MCP but it's not connected yet. Trigger terms: MCP, Render MCP, list_services, MCP setup, MCP server, API key, Bearer token, mcp.render.com, workspace selection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Render","render","tag",{"name":17,"slug":18,"type":15},"MCP","mcp",{"name":20,"slug":21,"type":15},"Deployment","deployment",{"name":23,"slug":24,"type":15},"Engineering","engineering",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102","MIT",465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Frender\u002Fskills\u002Frender-mcp","---\nname: render-mcp\ndescription: >-\n  Connects and configures the Render MCP server for AI coding tools—setup per\n  tool (Cursor, Claude Code, Codex), authentication, workspace selection, tool\n  catalog, and troubleshooting. Use when MCP is not configured, list_services()\n  fails, the user asks about Render MCP setup, or an action skill needs MCP\n  but it's not connected yet.\n  Trigger terms: MCP, Render MCP, list_services, MCP setup, MCP server,\n  API key, Bearer token, mcp.render.com, workspace selection.\nlicense: MIT\ncompatibility: Render MCP server (hosted at mcp.render.com)\nmetadata:\n  author: Render\n  version: \"1.0.0\"\n  category: operations\n---\n\n# Render MCP Server\n\nThe Render MCP server lets AI coding tools manage Render services, databases, deploys, logs, and metrics directly. This skill covers **setup**, **authentication**, **workspace selection**, the **tool catalog**, and **troubleshooting**.\n\nAction skills (render-deploy, render-debug, render-monitor) use MCP tools for their workflows. If MCP is not connected, set it up using this skill first.\n\n## When to Use\n\n- `list_services()` fails or MCP tools are unavailable\n- First-time Render MCP setup for any AI tool\n- User asks how to connect their AI tool to Render\n- Switching workspaces or troubleshooting auth errors\n- Discovering which MCP tools exist and what they do\n\n## Connection Details\n\n| Property | Value |\n|----------|-------|\n| URL | `https:\u002F\u002Fmcp.render.com\u002Fmcp` |\n| Transport | HTTP (streamable) |\n| Auth | Bearer token (Render API key) |\n| API key page | `https:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys` |\n| Docs | `https:\u002F\u002Frender.com\u002Fdocs\u002Fmcp-server` |\n\n## Setup by Tool\n\n### Cursor\n\n1. Get an API key from the [Render Dashboard](https:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys)\n\n2. Add to `~\u002F.cursor\u002Fmcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"render\": {\n      \"url\": \"https:\u002F\u002Fmcp.render.com\u002Fmcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer \u003CYOUR_API_KEY>\"\n      }\n    }\n  }\n}\n```\n\n3. Restart Cursor, then verify with `list_services()`\n\n### Claude Code\n\n1. Get an API key from the [Render Dashboard](https:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys)\n\n2. Add the MCP server:\n\n```bash\nclaude mcp add --transport http render https:\u002F\u002Fmcp.render.com\u002Fmcp --header \"Authorization: Bearer \u003CYOUR_API_KEY>\"\n```\n\n3. Restart Claude Code, then verify with `list_services()`\n\n### Codex\n\n1. Get an API key from the [Render Dashboard](https:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys)\n\n2. Set the key in your shell:\n\n```bash\nexport RENDER_API_KEY=\"\u003CYOUR_API_KEY>\"\n```\n\n3. Add the MCP server:\n\n```bash\ncodex mcp add render --url https:\u002F\u002Fmcp.render.com\u002Fmcp --bearer-token-env-var RENDER_API_KEY\n```\n\n4. Restart Codex, then verify with `list_services()`\n\n### Other Tools\n\nFor tools not listed above, use the generic HTTP MCP configuration:\n\n- **URL:** `https:\u002F\u002Fmcp.render.com\u002Fmcp`\n- **Auth header:** `Authorization: Bearer \u003CYOUR_API_KEY>`\n- **Transport:** HTTP (streamable HTTP, not SSE)\n\nSee [Render MCP docs](https:\u002F\u002Frender.com\u002Fdocs\u002Fmcp-server) for tool-specific instructions.\n\n## Workspace Selection\n\nAfter MCP is connected, set the active workspace:\n\n```\nSet my Render workspace to [WORKSPACE_NAME]\n```\n\nOr programmatically:\n\n```\nget_selected_workspace()   # Check current\nlist_workspaces()          # List available\n```\n\nAll MCP operations run against the active workspace.\n\n## Tool Catalog\n\n### Service management\n\n| Tool | Purpose |\n|------|---------|\n| `list_services()` | List all services and datastores |\n| `get_service(serviceId)` | Get service details |\n| `create_web_service(...)` | Create a web service from Git repo |\n| `create_static_site(...)` | Create a static site from Git repo |\n| `update_service(serviceId, ...)` | Update service configuration |\n| `restart_service(serviceId)` | Restart a service |\n\n### Deploys\n\n| Tool | Purpose |\n|------|---------|\n| `list_deploys(serviceId, limit)` | List deploys for a service |\n| `trigger_deploy(serviceId)` | Trigger a new deploy |\n\n### Logs\n\n| Tool | Purpose |\n|------|---------|\n| `list_logs(resource, level, type, text, statusCode, limit)` | Query logs with filters |\n\nKey filters: `level` (error, warn, info), `type` (build, deploy), `text` (search string), `statusCode` (HTTP codes).\n\n### Metrics\n\n| Tool | Purpose |\n|------|---------|\n| `get_metrics(resourceId, metricTypes, ...)` | Get service or database metrics |\n\nMetric types: `cpu_usage`, `memory_usage`, `cpu_limit`, `memory_limit`, `http_latency`, `http_request_count`, `active_connections`.\n\nOptional: `httpLatencyQuantile` (0.5, 0.95, 0.99), `httpPath` (filter by endpoint).\n\n### Databases\n\n| Tool | Purpose |\n|------|---------|\n| `list_postgres_instances()` | List Postgres databases |\n| `get_postgres(postgresId)` | Get database details |\n| `query_render_postgres(postgresId, sql)` | Run SQL query |\n\n### Key Value\n\n| Tool | Purpose |\n|------|---------|\n| `list_key_value()` | List Key Value instances |\n| `get_key_value(keyValueId)` | Get Key Value details |\n\n### Environment Variables\n\n| Tool | Purpose |\n|------|---------|\n| `update_environment_variables(serviceId, envVars)` | Set env vars on a service |\n\n### Workspace\n\n| Tool | Purpose |\n|------|---------|\n| `list_workspaces()` | List available workspaces |\n| `get_selected_workspace()` | Get the active workspace |\n\n## Common Mistakes\n\n| Mistake | Fix |\n|---------|-----|\n| Wrong URL (using SSE endpoint) | Use `https:\u002F\u002Fmcp.render.com\u002Fmcp` (not `\u002Fsse`) |\n| Expired or invalid API key | Generate a new key from Dashboard > Account Settings > API Keys |\n| Wrong workspace selected | Run `list_workspaces()` and switch to the correct one |\n| Using MCP to create image-backed services | Not supported — use Dashboard or API for prebuilt Docker images |\n| Missing `Bearer` prefix in auth header | Header must be `Authorization: Bearer \u003Ckey>` |\n\n## Troubleshooting\n\nSee `references\u002Ftroubleshooting.md` for connection errors, auth failures, timeout issues, and tool-specific quirks.\n\n## References\n\n| Document | Contents |\n|----------|----------|\n| `references\u002Ftroubleshooting.md` | Connection errors, auth failures, tool-specific issues, timeout handling |\n\n## Related Skills\n\n- **render-deploy** — Deploy flows using MCP tools\n- **render-debug** — Debug failures using MCP logs and metrics\n- **render-monitor** — Monitor health using MCP metrics\n- **render-cli** — CLI alternative when MCP is unavailable\n",{"data":37,"body":42},{"name":4,"description":6,"license":28,"compatibility":38,"metadata":39},"Render MCP server (hosted at mcp.render.com)",{"author":13,"version":40,"category":41},"1.0.0","operations",{"type":43,"children":44},"root",[45,54,95,100,107,144,150,255,261,268,298,516,529,535,552,617,630,636,653,692,699,744,757,763,768,810,823,829,834,844,849,858,863,869,875,998,1004,1058,1064,1101,1137,1143,1180,1234,1255,1261,1332,1338,1392,1398,1435,1441,1495,1501,1624,1629,1641,1647,1685,1691,1734],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"render-mcp-server",[51],{"type":52,"value":53},"text","Render MCP Server",{"type":46,"tag":55,"props":56,"children":57},"p",{},[58,60,66,68,73,74,79,81,86,88,93],{"type":52,"value":59},"The Render MCP server lets AI coding tools manage Render services, databases, deploys, logs, and metrics directly. This skill covers ",{"type":46,"tag":61,"props":62,"children":63},"strong",{},[64],{"type":52,"value":65},"setup",{"type":52,"value":67},", ",{"type":46,"tag":61,"props":69,"children":70},{},[71],{"type":52,"value":72},"authentication",{"type":52,"value":67},{"type":46,"tag":61,"props":75,"children":76},{},[77],{"type":52,"value":78},"workspace selection",{"type":52,"value":80},", the ",{"type":46,"tag":61,"props":82,"children":83},{},[84],{"type":52,"value":85},"tool catalog",{"type":52,"value":87},", and ",{"type":46,"tag":61,"props":89,"children":90},{},[91],{"type":52,"value":92},"troubleshooting",{"type":52,"value":94},".",{"type":46,"tag":55,"props":96,"children":97},{},[98],{"type":52,"value":99},"Action skills (render-deploy, render-debug, render-monitor) use MCP tools for their workflows. If MCP is not connected, set it up using this skill first.",{"type":46,"tag":101,"props":102,"children":104},"h2",{"id":103},"when-to-use",[105],{"type":52,"value":106},"When to Use",{"type":46,"tag":108,"props":109,"children":110},"ul",{},[111,124,129,134,139],{"type":46,"tag":112,"props":113,"children":114},"li",{},[115,122],{"type":46,"tag":116,"props":117,"children":119},"code",{"className":118},[],[120],{"type":52,"value":121},"list_services()",{"type":52,"value":123}," fails or MCP tools are unavailable",{"type":46,"tag":112,"props":125,"children":126},{},[127],{"type":52,"value":128},"First-time Render MCP setup for any AI tool",{"type":46,"tag":112,"props":130,"children":131},{},[132],{"type":52,"value":133},"User asks how to connect their AI tool to Render",{"type":46,"tag":112,"props":135,"children":136},{},[137],{"type":52,"value":138},"Switching workspaces or troubleshooting auth errors",{"type":46,"tag":112,"props":140,"children":141},{},[142],{"type":52,"value":143},"Discovering which MCP tools exist and what they do",{"type":46,"tag":101,"props":145,"children":147},{"id":146},"connection-details",[148],{"type":52,"value":149},"Connection Details",{"type":46,"tag":151,"props":152,"children":153},"table",{},[154,173],{"type":46,"tag":155,"props":156,"children":157},"thead",{},[158],{"type":46,"tag":159,"props":160,"children":161},"tr",{},[162,168],{"type":46,"tag":163,"props":164,"children":165},"th",{},[166],{"type":52,"value":167},"Property",{"type":46,"tag":163,"props":169,"children":170},{},[171],{"type":52,"value":172},"Value",{"type":46,"tag":174,"props":175,"children":176},"tbody",{},[177,195,208,221,238],{"type":46,"tag":159,"props":178,"children":179},{},[180,186],{"type":46,"tag":181,"props":182,"children":183},"td",{},[184],{"type":52,"value":185},"URL",{"type":46,"tag":181,"props":187,"children":188},{},[189],{"type":46,"tag":116,"props":190,"children":192},{"className":191},[],[193],{"type":52,"value":194},"https:\u002F\u002Fmcp.render.com\u002Fmcp",{"type":46,"tag":159,"props":196,"children":197},{},[198,203],{"type":46,"tag":181,"props":199,"children":200},{},[201],{"type":52,"value":202},"Transport",{"type":46,"tag":181,"props":204,"children":205},{},[206],{"type":52,"value":207},"HTTP (streamable)",{"type":46,"tag":159,"props":209,"children":210},{},[211,216],{"type":46,"tag":181,"props":212,"children":213},{},[214],{"type":52,"value":215},"Auth",{"type":46,"tag":181,"props":217,"children":218},{},[219],{"type":52,"value":220},"Bearer token (Render API key)",{"type":46,"tag":159,"props":222,"children":223},{},[224,229],{"type":46,"tag":181,"props":225,"children":226},{},[227],{"type":52,"value":228},"API key page",{"type":46,"tag":181,"props":230,"children":231},{},[232],{"type":46,"tag":116,"props":233,"children":235},{"className":234},[],[236],{"type":52,"value":237},"https:\u002F\u002Fdashboard.render.com\u002Fu\u002F*\u002Fsettings#api-keys",{"type":46,"tag":159,"props":239,"children":240},{},[241,246],{"type":46,"tag":181,"props":242,"children":243},{},[244],{"type":52,"value":245},"Docs",{"type":46,"tag":181,"props":247,"children":248},{},[249],{"type":46,"tag":116,"props":250,"children":252},{"className":251},[],[253],{"type":52,"value":254},"https:\u002F\u002Frender.com\u002Fdocs\u002Fmcp-server",{"type":46,"tag":101,"props":256,"children":258},{"id":257},"setup-by-tool",[259],{"type":52,"value":260},"Setup by Tool",{"type":46,"tag":262,"props":263,"children":265},"h3",{"id":264},"cursor",[266],{"type":52,"value":267},"Cursor",{"type":46,"tag":269,"props":270,"children":271},"ol",{},[272,285],{"type":46,"tag":112,"props":273,"children":274},{},[275,277],{"type":52,"value":276},"Get an API key from the ",{"type":46,"tag":278,"props":279,"children":282},"a",{"href":237,"rel":280},[281],"nofollow",[283],{"type":52,"value":284},"Render Dashboard",{"type":46,"tag":112,"props":286,"children":287},{},[288,290,296],{"type":52,"value":289},"Add to ",{"type":46,"tag":116,"props":291,"children":293},{"className":292},[],[294],{"type":52,"value":295},"~\u002F.cursor\u002Fmcp.json",{"type":52,"value":297},":",{"type":46,"tag":299,"props":300,"children":305},"pre",{"className":301,"code":302,"language":303,"meta":304,"style":304},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"mcpServers\": {\n    \"render\": {\n      \"url\": \"https:\u002F\u002Fmcp.render.com\u002Fmcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer \u003CYOUR_API_KEY>\"\n      }\n    }\n  }\n}\n","json","",[306],{"type":46,"tag":116,"props":307,"children":308},{"__ignoreMap":304},[309,321,350,376,418,443,480,489,498,507],{"type":46,"tag":310,"props":311,"children":314},"span",{"class":312,"line":313},"line",1,[315],{"type":46,"tag":310,"props":316,"children":318},{"style":317},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[319],{"type":52,"value":320},"{\n",{"type":46,"tag":310,"props":322,"children":324},{"class":312,"line":323},2,[325,330,336,341,345],{"type":46,"tag":310,"props":326,"children":327},{"style":317},[328],{"type":52,"value":329},"  \"",{"type":46,"tag":310,"props":331,"children":333},{"style":332},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[334],{"type":52,"value":335},"mcpServers",{"type":46,"tag":310,"props":337,"children":338},{"style":317},[339],{"type":52,"value":340},"\"",{"type":46,"tag":310,"props":342,"children":343},{"style":317},[344],{"type":52,"value":297},{"type":46,"tag":310,"props":346,"children":347},{"style":317},[348],{"type":52,"value":349}," {\n",{"type":46,"tag":310,"props":351,"children":353},{"class":312,"line":352},3,[354,359,364,368,372],{"type":46,"tag":310,"props":355,"children":356},{"style":317},[357],{"type":52,"value":358},"    \"",{"type":46,"tag":310,"props":360,"children":362},{"style":361},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[363],{"type":52,"value":14},{"type":46,"tag":310,"props":365,"children":366},{"style":317},[367],{"type":52,"value":340},{"type":46,"tag":310,"props":369,"children":370},{"style":317},[371],{"type":52,"value":297},{"type":46,"tag":310,"props":373,"children":374},{"style":317},[375],{"type":52,"value":349},{"type":46,"tag":310,"props":377,"children":379},{"class":312,"line":378},4,[380,385,391,395,399,404,409,413],{"type":46,"tag":310,"props":381,"children":382},{"style":317},[383],{"type":52,"value":384},"      \"",{"type":46,"tag":310,"props":386,"children":388},{"style":387},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[389],{"type":52,"value":390},"url",{"type":46,"tag":310,"props":392,"children":393},{"style":317},[394],{"type":52,"value":340},{"type":46,"tag":310,"props":396,"children":397},{"style":317},[398],{"type":52,"value":297},{"type":46,"tag":310,"props":400,"children":401},{"style":317},[402],{"type":52,"value":403}," \"",{"type":46,"tag":310,"props":405,"children":407},{"style":406},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[408],{"type":52,"value":194},{"type":46,"tag":310,"props":410,"children":411},{"style":317},[412],{"type":52,"value":340},{"type":46,"tag":310,"props":414,"children":415},{"style":317},[416],{"type":52,"value":417},",\n",{"type":46,"tag":310,"props":419,"children":421},{"class":312,"line":420},5,[422,426,431,435,439],{"type":46,"tag":310,"props":423,"children":424},{"style":317},[425],{"type":52,"value":384},{"type":46,"tag":310,"props":427,"children":428},{"style":387},[429],{"type":52,"value":430},"headers",{"type":46,"tag":310,"props":432,"children":433},{"style":317},[434],{"type":52,"value":340},{"type":46,"tag":310,"props":436,"children":437},{"style":317},[438],{"type":52,"value":297},{"type":46,"tag":310,"props":440,"children":441},{"style":317},[442],{"type":52,"value":349},{"type":46,"tag":310,"props":444,"children":446},{"class":312,"line":445},6,[447,452,458,462,466,470,475],{"type":46,"tag":310,"props":448,"children":449},{"style":317},[450],{"type":52,"value":451},"        \"",{"type":46,"tag":310,"props":453,"children":455},{"style":454},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[456],{"type":52,"value":457},"Authorization",{"type":46,"tag":310,"props":459,"children":460},{"style":317},[461],{"type":52,"value":340},{"type":46,"tag":310,"props":463,"children":464},{"style":317},[465],{"type":52,"value":297},{"type":46,"tag":310,"props":467,"children":468},{"style":317},[469],{"type":52,"value":403},{"type":46,"tag":310,"props":471,"children":472},{"style":406},[473],{"type":52,"value":474},"Bearer \u003CYOUR_API_KEY>",{"type":46,"tag":310,"props":476,"children":477},{"style":317},[478],{"type":52,"value":479},"\"\n",{"type":46,"tag":310,"props":481,"children":483},{"class":312,"line":482},7,[484],{"type":46,"tag":310,"props":485,"children":486},{"style":317},[487],{"type":52,"value":488},"      }\n",{"type":46,"tag":310,"props":490,"children":492},{"class":312,"line":491},8,[493],{"type":46,"tag":310,"props":494,"children":495},{"style":317},[496],{"type":52,"value":497},"    }\n",{"type":46,"tag":310,"props":499,"children":501},{"class":312,"line":500},9,[502],{"type":46,"tag":310,"props":503,"children":504},{"style":317},[505],{"type":52,"value":506},"  }\n",{"type":46,"tag":310,"props":508,"children":510},{"class":312,"line":509},10,[511],{"type":46,"tag":310,"props":512,"children":513},{"style":317},[514],{"type":52,"value":515},"}\n",{"type":46,"tag":269,"props":517,"children":518},{"start":352},[519],{"type":46,"tag":112,"props":520,"children":521},{},[522,524],{"type":52,"value":523},"Restart Cursor, then verify with ",{"type":46,"tag":116,"props":525,"children":527},{"className":526},[],[528],{"type":52,"value":121},{"type":46,"tag":262,"props":530,"children":532},{"id":531},"claude-code",[533],{"type":52,"value":534},"Claude Code",{"type":46,"tag":269,"props":536,"children":537},{},[538,547],{"type":46,"tag":112,"props":539,"children":540},{},[541,542],{"type":52,"value":276},{"type":46,"tag":278,"props":543,"children":545},{"href":237,"rel":544},[281],[546],{"type":52,"value":284},{"type":46,"tag":112,"props":548,"children":549},{},[550],{"type":52,"value":551},"Add the MCP server:",{"type":46,"tag":299,"props":553,"children":557},{"className":554,"code":555,"language":556,"meta":304,"style":304},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","claude mcp add --transport http render https:\u002F\u002Fmcp.render.com\u002Fmcp --header \"Authorization: Bearer \u003CYOUR_API_KEY>\"\n","bash",[558],{"type":46,"tag":116,"props":559,"children":560},{"__ignoreMap":304},[561],{"type":46,"tag":310,"props":562,"children":563},{"class":312,"line":313},[564,569,574,579,584,589,594,599,604,608,613],{"type":46,"tag":310,"props":565,"children":566},{"style":361},[567],{"type":52,"value":568},"claude",{"type":46,"tag":310,"props":570,"children":571},{"style":406},[572],{"type":52,"value":573}," mcp",{"type":46,"tag":310,"props":575,"children":576},{"style":406},[577],{"type":52,"value":578}," add",{"type":46,"tag":310,"props":580,"children":581},{"style":406},[582],{"type":52,"value":583}," --transport",{"type":46,"tag":310,"props":585,"children":586},{"style":406},[587],{"type":52,"value":588}," http",{"type":46,"tag":310,"props":590,"children":591},{"style":406},[592],{"type":52,"value":593}," render",{"type":46,"tag":310,"props":595,"children":596},{"style":406},[597],{"type":52,"value":598}," https:\u002F\u002Fmcp.render.com\u002Fmcp",{"type":46,"tag":310,"props":600,"children":601},{"style":406},[602],{"type":52,"value":603}," --header",{"type":46,"tag":310,"props":605,"children":606},{"style":317},[607],{"type":52,"value":403},{"type":46,"tag":310,"props":609,"children":610},{"style":406},[611],{"type":52,"value":612},"Authorization: Bearer \u003CYOUR_API_KEY>",{"type":46,"tag":310,"props":614,"children":615},{"style":317},[616],{"type":52,"value":479},{"type":46,"tag":269,"props":618,"children":619},{"start":352},[620],{"type":46,"tag":112,"props":621,"children":622},{},[623,625],{"type":52,"value":624},"Restart Claude Code, then verify with ",{"type":46,"tag":116,"props":626,"children":628},{"className":627},[],[629],{"type":52,"value":121},{"type":46,"tag":262,"props":631,"children":633},{"id":632},"codex",[634],{"type":52,"value":635},"Codex",{"type":46,"tag":269,"props":637,"children":638},{},[639,648],{"type":46,"tag":112,"props":640,"children":641},{},[642,643],{"type":52,"value":276},{"type":46,"tag":278,"props":644,"children":646},{"href":237,"rel":645},[281],[647],{"type":52,"value":284},{"type":46,"tag":112,"props":649,"children":650},{},[651],{"type":52,"value":652},"Set the key in your shell:",{"type":46,"tag":299,"props":654,"children":656},{"className":554,"code":655,"language":556,"meta":304,"style":304},"export RENDER_API_KEY=\"\u003CYOUR_API_KEY>\"\n",[657],{"type":46,"tag":116,"props":658,"children":659},{"__ignoreMap":304},[660],{"type":46,"tag":310,"props":661,"children":662},{"class":312,"line":313},[663,668,674,679,683,688],{"type":46,"tag":310,"props":664,"children":665},{"style":332},[666],{"type":52,"value":667},"export",{"type":46,"tag":310,"props":669,"children":671},{"style":670},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[672],{"type":52,"value":673}," RENDER_API_KEY",{"type":46,"tag":310,"props":675,"children":676},{"style":317},[677],{"type":52,"value":678},"=",{"type":46,"tag":310,"props":680,"children":681},{"style":317},[682],{"type":52,"value":340},{"type":46,"tag":310,"props":684,"children":685},{"style":406},[686],{"type":52,"value":687},"\u003CYOUR_API_KEY>",{"type":46,"tag":310,"props":689,"children":690},{"style":317},[691],{"type":52,"value":479},{"type":46,"tag":269,"props":693,"children":694},{"start":352},[695],{"type":46,"tag":112,"props":696,"children":697},{},[698],{"type":52,"value":551},{"type":46,"tag":299,"props":700,"children":702},{"className":554,"code":701,"language":556,"meta":304,"style":304},"codex mcp add render --url https:\u002F\u002Fmcp.render.com\u002Fmcp --bearer-token-env-var RENDER_API_KEY\n",[703],{"type":46,"tag":116,"props":704,"children":705},{"__ignoreMap":304},[706],{"type":46,"tag":310,"props":707,"children":708},{"class":312,"line":313},[709,713,717,721,725,730,734,739],{"type":46,"tag":310,"props":710,"children":711},{"style":361},[712],{"type":52,"value":632},{"type":46,"tag":310,"props":714,"children":715},{"style":406},[716],{"type":52,"value":573},{"type":46,"tag":310,"props":718,"children":719},{"style":406},[720],{"type":52,"value":578},{"type":46,"tag":310,"props":722,"children":723},{"style":406},[724],{"type":52,"value":593},{"type":46,"tag":310,"props":726,"children":727},{"style":406},[728],{"type":52,"value":729}," --url",{"type":46,"tag":310,"props":731,"children":732},{"style":406},[733],{"type":52,"value":598},{"type":46,"tag":310,"props":735,"children":736},{"style":406},[737],{"type":52,"value":738}," --bearer-token-env-var",{"type":46,"tag":310,"props":740,"children":741},{"style":406},[742],{"type":52,"value":743}," RENDER_API_KEY\n",{"type":46,"tag":269,"props":745,"children":746},{"start":378},[747],{"type":46,"tag":112,"props":748,"children":749},{},[750,752],{"type":52,"value":751},"Restart Codex, then verify with ",{"type":46,"tag":116,"props":753,"children":755},{"className":754},[],[756],{"type":52,"value":121},{"type":46,"tag":262,"props":758,"children":760},{"id":759},"other-tools",[761],{"type":52,"value":762},"Other Tools",{"type":46,"tag":55,"props":764,"children":765},{},[766],{"type":52,"value":767},"For tools not listed above, use the generic HTTP MCP configuration:",{"type":46,"tag":108,"props":769,"children":770},{},[771,786,800],{"type":46,"tag":112,"props":772,"children":773},{},[774,779,781],{"type":46,"tag":61,"props":775,"children":776},{},[777],{"type":52,"value":778},"URL:",{"type":52,"value":780}," ",{"type":46,"tag":116,"props":782,"children":784},{"className":783},[],[785],{"type":52,"value":194},{"type":46,"tag":112,"props":787,"children":788},{},[789,794,795],{"type":46,"tag":61,"props":790,"children":791},{},[792],{"type":52,"value":793},"Auth header:",{"type":52,"value":780},{"type":46,"tag":116,"props":796,"children":798},{"className":797},[],[799],{"type":52,"value":612},{"type":46,"tag":112,"props":801,"children":802},{},[803,808],{"type":46,"tag":61,"props":804,"children":805},{},[806],{"type":52,"value":807},"Transport:",{"type":52,"value":809}," HTTP (streamable HTTP, not SSE)",{"type":46,"tag":55,"props":811,"children":812},{},[813,815,821],{"type":52,"value":814},"See ",{"type":46,"tag":278,"props":816,"children":818},{"href":254,"rel":817},[281],[819],{"type":52,"value":820},"Render MCP docs",{"type":52,"value":822}," for tool-specific instructions.",{"type":46,"tag":101,"props":824,"children":826},{"id":825},"workspace-selection",[827],{"type":52,"value":828},"Workspace Selection",{"type":46,"tag":55,"props":830,"children":831},{},[832],{"type":52,"value":833},"After MCP is connected, set the active workspace:",{"type":46,"tag":299,"props":835,"children":839},{"className":836,"code":838,"language":52},[837],"language-text","Set my Render workspace to [WORKSPACE_NAME]\n",[840],{"type":46,"tag":116,"props":841,"children":842},{"__ignoreMap":304},[843],{"type":52,"value":838},{"type":46,"tag":55,"props":845,"children":846},{},[847],{"type":52,"value":848},"Or programmatically:",{"type":46,"tag":299,"props":850,"children":853},{"className":851,"code":852,"language":52},[837],"get_selected_workspace()   # Check current\nlist_workspaces()          # List available\n",[854],{"type":46,"tag":116,"props":855,"children":856},{"__ignoreMap":304},[857],{"type":52,"value":852},{"type":46,"tag":55,"props":859,"children":860},{},[861],{"type":52,"value":862},"All MCP operations run against the active workspace.",{"type":46,"tag":101,"props":864,"children":866},{"id":865},"tool-catalog",[867],{"type":52,"value":868},"Tool Catalog",{"type":46,"tag":262,"props":870,"children":872},{"id":871},"service-management",[873],{"type":52,"value":874},"Service management",{"type":46,"tag":151,"props":876,"children":877},{},[878,894],{"type":46,"tag":155,"props":879,"children":880},{},[881],{"type":46,"tag":159,"props":882,"children":883},{},[884,889],{"type":46,"tag":163,"props":885,"children":886},{},[887],{"type":52,"value":888},"Tool",{"type":46,"tag":163,"props":890,"children":891},{},[892],{"type":52,"value":893},"Purpose",{"type":46,"tag":174,"props":895,"children":896},{},[897,913,930,947,964,981],{"type":46,"tag":159,"props":898,"children":899},{},[900,908],{"type":46,"tag":181,"props":901,"children":902},{},[903],{"type":46,"tag":116,"props":904,"children":906},{"className":905},[],[907],{"type":52,"value":121},{"type":46,"tag":181,"props":909,"children":910},{},[911],{"type":52,"value":912},"List all services and datastores",{"type":46,"tag":159,"props":914,"children":915},{},[916,925],{"type":46,"tag":181,"props":917,"children":918},{},[919],{"type":46,"tag":116,"props":920,"children":922},{"className":921},[],[923],{"type":52,"value":924},"get_service(serviceId)",{"type":46,"tag":181,"props":926,"children":927},{},[928],{"type":52,"value":929},"Get service details",{"type":46,"tag":159,"props":931,"children":932},{},[933,942],{"type":46,"tag":181,"props":934,"children":935},{},[936],{"type":46,"tag":116,"props":937,"children":939},{"className":938},[],[940],{"type":52,"value":941},"create_web_service(...)",{"type":46,"tag":181,"props":943,"children":944},{},[945],{"type":52,"value":946},"Create a web service from Git repo",{"type":46,"tag":159,"props":948,"children":949},{},[950,959],{"type":46,"tag":181,"props":951,"children":952},{},[953],{"type":46,"tag":116,"props":954,"children":956},{"className":955},[],[957],{"type":52,"value":958},"create_static_site(...)",{"type":46,"tag":181,"props":960,"children":961},{},[962],{"type":52,"value":963},"Create a static site from Git repo",{"type":46,"tag":159,"props":965,"children":966},{},[967,976],{"type":46,"tag":181,"props":968,"children":969},{},[970],{"type":46,"tag":116,"props":971,"children":973},{"className":972},[],[974],{"type":52,"value":975},"update_service(serviceId, ...)",{"type":46,"tag":181,"props":977,"children":978},{},[979],{"type":52,"value":980},"Update service configuration",{"type":46,"tag":159,"props":982,"children":983},{},[984,993],{"type":46,"tag":181,"props":985,"children":986},{},[987],{"type":46,"tag":116,"props":988,"children":990},{"className":989},[],[991],{"type":52,"value":992},"restart_service(serviceId)",{"type":46,"tag":181,"props":994,"children":995},{},[996],{"type":52,"value":997},"Restart a service",{"type":46,"tag":262,"props":999,"children":1001},{"id":1000},"deploys",[1002],{"type":52,"value":1003},"Deploys",{"type":46,"tag":151,"props":1005,"children":1006},{},[1007,1021],{"type":46,"tag":155,"props":1008,"children":1009},{},[1010],{"type":46,"tag":159,"props":1011,"children":1012},{},[1013,1017],{"type":46,"tag":163,"props":1014,"children":1015},{},[1016],{"type":52,"value":888},{"type":46,"tag":163,"props":1018,"children":1019},{},[1020],{"type":52,"value":893},{"type":46,"tag":174,"props":1022,"children":1023},{},[1024,1041],{"type":46,"tag":159,"props":1025,"children":1026},{},[1027,1036],{"type":46,"tag":181,"props":1028,"children":1029},{},[1030],{"type":46,"tag":116,"props":1031,"children":1033},{"className":1032},[],[1034],{"type":52,"value":1035},"list_deploys(serviceId, limit)",{"type":46,"tag":181,"props":1037,"children":1038},{},[1039],{"type":52,"value":1040},"List deploys for a service",{"type":46,"tag":159,"props":1042,"children":1043},{},[1044,1053],{"type":46,"tag":181,"props":1045,"children":1046},{},[1047],{"type":46,"tag":116,"props":1048,"children":1050},{"className":1049},[],[1051],{"type":52,"value":1052},"trigger_deploy(serviceId)",{"type":46,"tag":181,"props":1054,"children":1055},{},[1056],{"type":52,"value":1057},"Trigger a new deploy",{"type":46,"tag":262,"props":1059,"children":1061},{"id":1060},"logs",[1062],{"type":52,"value":1063},"Logs",{"type":46,"tag":151,"props":1065,"children":1066},{},[1067,1081],{"type":46,"tag":155,"props":1068,"children":1069},{},[1070],{"type":46,"tag":159,"props":1071,"children":1072},{},[1073,1077],{"type":46,"tag":163,"props":1074,"children":1075},{},[1076],{"type":52,"value":888},{"type":46,"tag":163,"props":1078,"children":1079},{},[1080],{"type":52,"value":893},{"type":46,"tag":174,"props":1082,"children":1083},{},[1084],{"type":46,"tag":159,"props":1085,"children":1086},{},[1087,1096],{"type":46,"tag":181,"props":1088,"children":1089},{},[1090],{"type":46,"tag":116,"props":1091,"children":1093},{"className":1092},[],[1094],{"type":52,"value":1095},"list_logs(resource, level, type, text, statusCode, limit)",{"type":46,"tag":181,"props":1097,"children":1098},{},[1099],{"type":52,"value":1100},"Query logs with filters",{"type":46,"tag":55,"props":1102,"children":1103},{},[1104,1106,1112,1114,1120,1122,1127,1129,1135],{"type":52,"value":1105},"Key filters: ",{"type":46,"tag":116,"props":1107,"children":1109},{"className":1108},[],[1110],{"type":52,"value":1111},"level",{"type":52,"value":1113}," (error, warn, info), ",{"type":46,"tag":116,"props":1115,"children":1117},{"className":1116},[],[1118],{"type":52,"value":1119},"type",{"type":52,"value":1121}," (build, deploy), ",{"type":46,"tag":116,"props":1123,"children":1125},{"className":1124},[],[1126],{"type":52,"value":52},{"type":52,"value":1128}," (search string), ",{"type":46,"tag":116,"props":1130,"children":1132},{"className":1131},[],[1133],{"type":52,"value":1134},"statusCode",{"type":52,"value":1136}," (HTTP codes).",{"type":46,"tag":262,"props":1138,"children":1140},{"id":1139},"metrics",[1141],{"type":52,"value":1142},"Metrics",{"type":46,"tag":151,"props":1144,"children":1145},{},[1146,1160],{"type":46,"tag":155,"props":1147,"children":1148},{},[1149],{"type":46,"tag":159,"props":1150,"children":1151},{},[1152,1156],{"type":46,"tag":163,"props":1153,"children":1154},{},[1155],{"type":52,"value":888},{"type":46,"tag":163,"props":1157,"children":1158},{},[1159],{"type":52,"value":893},{"type":46,"tag":174,"props":1161,"children":1162},{},[1163],{"type":46,"tag":159,"props":1164,"children":1165},{},[1166,1175],{"type":46,"tag":181,"props":1167,"children":1168},{},[1169],{"type":46,"tag":116,"props":1170,"children":1172},{"className":1171},[],[1173],{"type":52,"value":1174},"get_metrics(resourceId, metricTypes, ...)",{"type":46,"tag":181,"props":1176,"children":1177},{},[1178],{"type":52,"value":1179},"Get service or database metrics",{"type":46,"tag":55,"props":1181,"children":1182},{},[1183,1185,1191,1192,1198,1199,1205,1206,1212,1213,1219,1220,1226,1227,1233],{"type":52,"value":1184},"Metric types: ",{"type":46,"tag":116,"props":1186,"children":1188},{"className":1187},[],[1189],{"type":52,"value":1190},"cpu_usage",{"type":52,"value":67},{"type":46,"tag":116,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":52,"value":1197},"memory_usage",{"type":52,"value":67},{"type":46,"tag":116,"props":1200,"children":1202},{"className":1201},[],[1203],{"type":52,"value":1204},"cpu_limit",{"type":52,"value":67},{"type":46,"tag":116,"props":1207,"children":1209},{"className":1208},[],[1210],{"type":52,"value":1211},"memory_limit",{"type":52,"value":67},{"type":46,"tag":116,"props":1214,"children":1216},{"className":1215},[],[1217],{"type":52,"value":1218},"http_latency",{"type":52,"value":67},{"type":46,"tag":116,"props":1221,"children":1223},{"className":1222},[],[1224],{"type":52,"value":1225},"http_request_count",{"type":52,"value":67},{"type":46,"tag":116,"props":1228,"children":1230},{"className":1229},[],[1231],{"type":52,"value":1232},"active_connections",{"type":52,"value":94},{"type":46,"tag":55,"props":1235,"children":1236},{},[1237,1239,1245,1247,1253],{"type":52,"value":1238},"Optional: ",{"type":46,"tag":116,"props":1240,"children":1242},{"className":1241},[],[1243],{"type":52,"value":1244},"httpLatencyQuantile",{"type":52,"value":1246}," (0.5, 0.95, 0.99), ",{"type":46,"tag":116,"props":1248,"children":1250},{"className":1249},[],[1251],{"type":52,"value":1252},"httpPath",{"type":52,"value":1254}," (filter by endpoint).",{"type":46,"tag":262,"props":1256,"children":1258},{"id":1257},"databases",[1259],{"type":52,"value":1260},"Databases",{"type":46,"tag":151,"props":1262,"children":1263},{},[1264,1278],{"type":46,"tag":155,"props":1265,"children":1266},{},[1267],{"type":46,"tag":159,"props":1268,"children":1269},{},[1270,1274],{"type":46,"tag":163,"props":1271,"children":1272},{},[1273],{"type":52,"value":888},{"type":46,"tag":163,"props":1275,"children":1276},{},[1277],{"type":52,"value":893},{"type":46,"tag":174,"props":1279,"children":1280},{},[1281,1298,1315],{"type":46,"tag":159,"props":1282,"children":1283},{},[1284,1293],{"type":46,"tag":181,"props":1285,"children":1286},{},[1287],{"type":46,"tag":116,"props":1288,"children":1290},{"className":1289},[],[1291],{"type":52,"value":1292},"list_postgres_instances()",{"type":46,"tag":181,"props":1294,"children":1295},{},[1296],{"type":52,"value":1297},"List Postgres databases",{"type":46,"tag":159,"props":1299,"children":1300},{},[1301,1310],{"type":46,"tag":181,"props":1302,"children":1303},{},[1304],{"type":46,"tag":116,"props":1305,"children":1307},{"className":1306},[],[1308],{"type":52,"value":1309},"get_postgres(postgresId)",{"type":46,"tag":181,"props":1311,"children":1312},{},[1313],{"type":52,"value":1314},"Get database details",{"type":46,"tag":159,"props":1316,"children":1317},{},[1318,1327],{"type":46,"tag":181,"props":1319,"children":1320},{},[1321],{"type":46,"tag":116,"props":1322,"children":1324},{"className":1323},[],[1325],{"type":52,"value":1326},"query_render_postgres(postgresId, sql)",{"type":46,"tag":181,"props":1328,"children":1329},{},[1330],{"type":52,"value":1331},"Run SQL query",{"type":46,"tag":262,"props":1333,"children":1335},{"id":1334},"key-value",[1336],{"type":52,"value":1337},"Key Value",{"type":46,"tag":151,"props":1339,"children":1340},{},[1341,1355],{"type":46,"tag":155,"props":1342,"children":1343},{},[1344],{"type":46,"tag":159,"props":1345,"children":1346},{},[1347,1351],{"type":46,"tag":163,"props":1348,"children":1349},{},[1350],{"type":52,"value":888},{"type":46,"tag":163,"props":1352,"children":1353},{},[1354],{"type":52,"value":893},{"type":46,"tag":174,"props":1356,"children":1357},{},[1358,1375],{"type":46,"tag":159,"props":1359,"children":1360},{},[1361,1370],{"type":46,"tag":181,"props":1362,"children":1363},{},[1364],{"type":46,"tag":116,"props":1365,"children":1367},{"className":1366},[],[1368],{"type":52,"value":1369},"list_key_value()",{"type":46,"tag":181,"props":1371,"children":1372},{},[1373],{"type":52,"value":1374},"List Key Value instances",{"type":46,"tag":159,"props":1376,"children":1377},{},[1378,1387],{"type":46,"tag":181,"props":1379,"children":1380},{},[1381],{"type":46,"tag":116,"props":1382,"children":1384},{"className":1383},[],[1385],{"type":52,"value":1386},"get_key_value(keyValueId)",{"type":46,"tag":181,"props":1388,"children":1389},{},[1390],{"type":52,"value":1391},"Get Key Value details",{"type":46,"tag":262,"props":1393,"children":1395},{"id":1394},"environment-variables",[1396],{"type":52,"value":1397},"Environment Variables",{"type":46,"tag":151,"props":1399,"children":1400},{},[1401,1415],{"type":46,"tag":155,"props":1402,"children":1403},{},[1404],{"type":46,"tag":159,"props":1405,"children":1406},{},[1407,1411],{"type":46,"tag":163,"props":1408,"children":1409},{},[1410],{"type":52,"value":888},{"type":46,"tag":163,"props":1412,"children":1413},{},[1414],{"type":52,"value":893},{"type":46,"tag":174,"props":1416,"children":1417},{},[1418],{"type":46,"tag":159,"props":1419,"children":1420},{},[1421,1430],{"type":46,"tag":181,"props":1422,"children":1423},{},[1424],{"type":46,"tag":116,"props":1425,"children":1427},{"className":1426},[],[1428],{"type":52,"value":1429},"update_environment_variables(serviceId, envVars)",{"type":46,"tag":181,"props":1431,"children":1432},{},[1433],{"type":52,"value":1434},"Set env vars on a service",{"type":46,"tag":262,"props":1436,"children":1438},{"id":1437},"workspace",[1439],{"type":52,"value":1440},"Workspace",{"type":46,"tag":151,"props":1442,"children":1443},{},[1444,1458],{"type":46,"tag":155,"props":1445,"children":1446},{},[1447],{"type":46,"tag":159,"props":1448,"children":1449},{},[1450,1454],{"type":46,"tag":163,"props":1451,"children":1452},{},[1453],{"type":52,"value":888},{"type":46,"tag":163,"props":1455,"children":1456},{},[1457],{"type":52,"value":893},{"type":46,"tag":174,"props":1459,"children":1460},{},[1461,1478],{"type":46,"tag":159,"props":1462,"children":1463},{},[1464,1473],{"type":46,"tag":181,"props":1465,"children":1466},{},[1467],{"type":46,"tag":116,"props":1468,"children":1470},{"className":1469},[],[1471],{"type":52,"value":1472},"list_workspaces()",{"type":46,"tag":181,"props":1474,"children":1475},{},[1476],{"type":52,"value":1477},"List available workspaces",{"type":46,"tag":159,"props":1479,"children":1480},{},[1481,1490],{"type":46,"tag":181,"props":1482,"children":1483},{},[1484],{"type":46,"tag":116,"props":1485,"children":1487},{"className":1486},[],[1488],{"type":52,"value":1489},"get_selected_workspace()",{"type":46,"tag":181,"props":1491,"children":1492},{},[1493],{"type":52,"value":1494},"Get the active workspace",{"type":46,"tag":101,"props":1496,"children":1498},{"id":1497},"common-mistakes",[1499],{"type":52,"value":1500},"Common Mistakes",{"type":46,"tag":151,"props":1502,"children":1503},{},[1504,1520],{"type":46,"tag":155,"props":1505,"children":1506},{},[1507],{"type":46,"tag":159,"props":1508,"children":1509},{},[1510,1515],{"type":46,"tag":163,"props":1511,"children":1512},{},[1513],{"type":52,"value":1514},"Mistake",{"type":46,"tag":163,"props":1516,"children":1517},{},[1518],{"type":52,"value":1519},"Fix",{"type":46,"tag":174,"props":1521,"children":1522},{},[1523,1551,1564,1584,1597],{"type":46,"tag":159,"props":1524,"children":1525},{},[1526,1531],{"type":46,"tag":181,"props":1527,"children":1528},{},[1529],{"type":52,"value":1530},"Wrong URL (using SSE endpoint)",{"type":46,"tag":181,"props":1532,"children":1533},{},[1534,1536,1541,1543,1549],{"type":52,"value":1535},"Use ",{"type":46,"tag":116,"props":1537,"children":1539},{"className":1538},[],[1540],{"type":52,"value":194},{"type":52,"value":1542}," (not ",{"type":46,"tag":116,"props":1544,"children":1546},{"className":1545},[],[1547],{"type":52,"value":1548},"\u002Fsse",{"type":52,"value":1550},")",{"type":46,"tag":159,"props":1552,"children":1553},{},[1554,1559],{"type":46,"tag":181,"props":1555,"children":1556},{},[1557],{"type":52,"value":1558},"Expired or invalid API key",{"type":46,"tag":181,"props":1560,"children":1561},{},[1562],{"type":52,"value":1563},"Generate a new key from Dashboard > Account Settings > API Keys",{"type":46,"tag":159,"props":1565,"children":1566},{},[1567,1572],{"type":46,"tag":181,"props":1568,"children":1569},{},[1570],{"type":52,"value":1571},"Wrong workspace selected",{"type":46,"tag":181,"props":1573,"children":1574},{},[1575,1577,1582],{"type":52,"value":1576},"Run ",{"type":46,"tag":116,"props":1578,"children":1580},{"className":1579},[],[1581],{"type":52,"value":1472},{"type":52,"value":1583}," and switch to the correct one",{"type":46,"tag":159,"props":1585,"children":1586},{},[1587,1592],{"type":46,"tag":181,"props":1588,"children":1589},{},[1590],{"type":52,"value":1591},"Using MCP to create image-backed services",{"type":46,"tag":181,"props":1593,"children":1594},{},[1595],{"type":52,"value":1596},"Not supported — use Dashboard or API for prebuilt Docker images",{"type":46,"tag":159,"props":1598,"children":1599},{},[1600,1613],{"type":46,"tag":181,"props":1601,"children":1602},{},[1603,1605,1611],{"type":52,"value":1604},"Missing ",{"type":46,"tag":116,"props":1606,"children":1608},{"className":1607},[],[1609],{"type":52,"value":1610},"Bearer",{"type":52,"value":1612}," prefix in auth header",{"type":46,"tag":181,"props":1614,"children":1615},{},[1616,1618],{"type":52,"value":1617},"Header must be ",{"type":46,"tag":116,"props":1619,"children":1621},{"className":1620},[],[1622],{"type":52,"value":1623},"Authorization: Bearer \u003Ckey>",{"type":46,"tag":101,"props":1625,"children":1626},{"id":92},[1627],{"type":52,"value":1628},"Troubleshooting",{"type":46,"tag":55,"props":1630,"children":1631},{},[1632,1633,1639],{"type":52,"value":814},{"type":46,"tag":116,"props":1634,"children":1636},{"className":1635},[],[1637],{"type":52,"value":1638},"references\u002Ftroubleshooting.md",{"type":52,"value":1640}," for connection errors, auth failures, timeout issues, and tool-specific quirks.",{"type":46,"tag":101,"props":1642,"children":1644},{"id":1643},"references",[1645],{"type":52,"value":1646},"References",{"type":46,"tag":151,"props":1648,"children":1649},{},[1650,1666],{"type":46,"tag":155,"props":1651,"children":1652},{},[1653],{"type":46,"tag":159,"props":1654,"children":1655},{},[1656,1661],{"type":46,"tag":163,"props":1657,"children":1658},{},[1659],{"type":52,"value":1660},"Document",{"type":46,"tag":163,"props":1662,"children":1663},{},[1664],{"type":52,"value":1665},"Contents",{"type":46,"tag":174,"props":1667,"children":1668},{},[1669],{"type":46,"tag":159,"props":1670,"children":1671},{},[1672,1680],{"type":46,"tag":181,"props":1673,"children":1674},{},[1675],{"type":46,"tag":116,"props":1676,"children":1678},{"className":1677},[],[1679],{"type":52,"value":1638},{"type":46,"tag":181,"props":1681,"children":1682},{},[1683],{"type":52,"value":1684},"Connection errors, auth failures, tool-specific issues, timeout handling",{"type":46,"tag":101,"props":1686,"children":1688},{"id":1687},"related-skills",[1689],{"type":52,"value":1690},"Related Skills",{"type":46,"tag":108,"props":1692,"children":1693},{},[1694,1704,1714,1724],{"type":46,"tag":112,"props":1695,"children":1696},{},[1697,1702],{"type":46,"tag":61,"props":1698,"children":1699},{},[1700],{"type":52,"value":1701},"render-deploy",{"type":52,"value":1703}," — Deploy flows using MCP tools",{"type":46,"tag":112,"props":1705,"children":1706},{},[1707,1712],{"type":46,"tag":61,"props":1708,"children":1709},{},[1710],{"type":52,"value":1711},"render-debug",{"type":52,"value":1713}," — Debug failures using MCP logs and metrics",{"type":46,"tag":112,"props":1715,"children":1716},{},[1717,1722],{"type":46,"tag":61,"props":1718,"children":1719},{},[1720],{"type":52,"value":1721},"render-monitor",{"type":52,"value":1723}," — Monitor health using MCP metrics",{"type":46,"tag":112,"props":1725,"children":1726},{},[1727,1732],{"type":46,"tag":61,"props":1728,"children":1729},{},[1730],{"type":52,"value":1731},"render-cli",{"type":52,"value":1733}," — CLI alternative when MCP is unavailable",{"type":46,"tag":1735,"props":1736,"children":1737},"style",{},[1738],{"type":52,"value":1739},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1741,"total":1940},[1742,1763,1786,1801,1815,1832,1851,1867,1883,1897,1909,1924],{"slug":1743,"name":1743,"fn":1744,"description":1745,"org":1746,"tags":1747,"stars":1760,"repoUrl":1761,"updatedAt":1762},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1748,1751,1754,1757],{"name":1749,"slug":1750,"type":15},"Documents","documents",{"name":1752,"slug":1753,"type":15},"Healthcare","healthcare",{"name":1755,"slug":1756,"type":15},"Insurance","insurance",{"name":1758,"slug":1759,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1764,"name":1764,"fn":1765,"description":1766,"org":1767,"tags":1768,"stars":1783,"repoUrl":1784,"updatedAt":1785},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1769,1772,1774,1777,1780],{"name":1770,"slug":1771,"type":15},".NET","dotnet",{"name":1773,"slug":1764,"type":15},"ASP.NET Core",{"name":1775,"slug":1776,"type":15},"Blazor","blazor",{"name":1778,"slug":1779,"type":15},"C#","csharp",{"name":1781,"slug":1782,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1787,"name":1787,"fn":1788,"description":1789,"org":1790,"tags":1791,"stars":1783,"repoUrl":1784,"updatedAt":1800},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1792,1795,1798,1799],{"name":1793,"slug":1794,"type":15},"Apps SDK","apps-sdk",{"name":1796,"slug":1797,"type":15},"ChatGPT","chatgpt",{"name":17,"slug":18,"type":15},{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1802,"name":1802,"fn":1803,"description":1804,"org":1805,"tags":1806,"stars":1783,"repoUrl":1784,"updatedAt":1814},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1807,1810,1813],{"name":1808,"slug":1809,"type":15},"API Development","api-development",{"name":1811,"slug":1812,"type":15},"CLI","cli",{"name":635,"slug":632,"type":15},"2026-04-12T05:07:04.132762",{"slug":1816,"name":1816,"fn":1817,"description":1818,"org":1819,"tags":1820,"stars":1783,"repoUrl":1784,"updatedAt":1831},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1821,1824,1827,1830],{"name":1822,"slug":1823,"type":15},"Cloudflare","cloudflare",{"name":1825,"slug":1826,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1828,"slug":1829,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":20,"slug":21,"type":15},"2026-04-12T05:07:14.275118",{"slug":1833,"name":1833,"fn":1834,"description":1835,"org":1836,"tags":1837,"stars":1783,"repoUrl":1784,"updatedAt":1850},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1838,1841,1844,1847],{"name":1839,"slug":1840,"type":15},"Productivity","productivity",{"name":1842,"slug":1843,"type":15},"Project Management","project-management",{"name":1845,"slug":1846,"type":15},"Strategy","strategy",{"name":1848,"slug":1849,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1852,"name":1852,"fn":1853,"description":1854,"org":1855,"tags":1856,"stars":1783,"repoUrl":1784,"updatedAt":1866},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1857,1860,1862,1865],{"name":1858,"slug":1859,"type":15},"Design","design",{"name":1861,"slug":1852,"type":15},"Figma",{"name":1863,"slug":1864,"type":15},"Frontend","frontend",{"name":17,"slug":18,"type":15},"2026-04-12T05:06:47.939943",{"slug":1868,"name":1868,"fn":1869,"description":1870,"org":1871,"tags":1872,"stars":1783,"repoUrl":1784,"updatedAt":1882},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1873,1874,1877,1878,1879],{"name":1858,"slug":1859,"type":15},{"name":1875,"slug":1876,"type":15},"Design System","design-system",{"name":1861,"slug":1852,"type":15},{"name":1863,"slug":1864,"type":15},{"name":1880,"slug":1881,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1884,"name":1884,"fn":1885,"description":1886,"org":1887,"tags":1888,"stars":1783,"repoUrl":1784,"updatedAt":1896},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1889,1890,1891,1894,1895],{"name":1858,"slug":1859,"type":15},{"name":1875,"slug":1876,"type":15},{"name":1892,"slug":1893,"type":15},"Documentation","documentation",{"name":1861,"slug":1852,"type":15},{"name":1863,"slug":1864,"type":15},"2026-05-16T06:07:47.821474",{"slug":1898,"name":1898,"fn":1899,"description":1900,"org":1901,"tags":1902,"stars":1783,"repoUrl":1784,"updatedAt":1908},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1903,1904,1905,1906,1907],{"name":1858,"slug":1859,"type":15},{"name":1861,"slug":1852,"type":15},{"name":1863,"slug":1864,"type":15},{"name":1880,"slug":1881,"type":15},{"name":1781,"slug":1782,"type":15},"2026-05-16T06:07:40.583615",{"slug":1910,"name":1910,"fn":1911,"description":1912,"org":1913,"tags":1914,"stars":1783,"repoUrl":1784,"updatedAt":1923},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1915,1918,1919,1922],{"name":1916,"slug":1917,"type":15},"Animation","animation",{"name":635,"slug":632,"type":15},{"name":1920,"slug":1921,"type":15},"Creative","creative",{"name":1858,"slug":1859,"type":15},"2026-05-02T05:31:48.48485",{"slug":1925,"name":1925,"fn":1926,"description":1927,"org":1928,"tags":1929,"stars":1783,"repoUrl":1784,"updatedAt":1939},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1930,1931,1932,1935,1938],{"name":1920,"slug":1921,"type":15},{"name":1858,"slug":1859,"type":15},{"name":1933,"slug":1934,"type":15},"Image Generation","image-generation",{"name":1936,"slug":1937,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1942,"total":2055},[1943,1959,1975,1987,2005,2023,2043],{"slug":1944,"name":1944,"fn":1945,"description":1946,"org":1947,"tags":1948,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1949,1952,1955,1958],{"name":1950,"slug":1951,"type":15},"Accessibility","accessibility",{"name":1953,"slug":1954,"type":15},"Charts","charts",{"name":1956,"slug":1957,"type":15},"Data Visualization","data-visualization",{"name":1858,"slug":1859,"type":15},{"slug":1960,"name":1960,"fn":1961,"description":1962,"org":1963,"tags":1964,"stars":25,"repoUrl":26,"updatedAt":1974},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1965,1968,1971],{"name":1966,"slug":1967,"type":15},"Agents","agents",{"name":1969,"slug":1970,"type":15},"Browser Automation","browser-automation",{"name":1972,"slug":1973,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1976,"name":1976,"fn":1977,"description":1978,"org":1979,"tags":1980,"stars":25,"repoUrl":26,"updatedAt":1986},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1981,1982,1985],{"name":1969,"slug":1970,"type":15},{"name":1983,"slug":1984,"type":15},"Local Development","local-development",{"name":1972,"slug":1973,"type":15},"2026-04-06T18:41:17.526867",{"slug":1988,"name":1988,"fn":1989,"description":1990,"org":1991,"tags":1992,"stars":25,"repoUrl":26,"updatedAt":2004},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1993,1994,1995,1998,2001],{"name":1966,"slug":1967,"type":15},{"name":1828,"slug":1829,"type":15},{"name":1996,"slug":1997,"type":15},"SDK","sdk",{"name":1999,"slug":2000,"type":15},"Serverless","serverless",{"name":2002,"slug":2003,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2006,"name":2006,"fn":2007,"description":2008,"org":2009,"tags":2010,"stars":25,"repoUrl":26,"updatedAt":2022},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2011,2012,2015,2018,2019],{"name":1863,"slug":1864,"type":15},{"name":2013,"slug":2014,"type":15},"React","react",{"name":2016,"slug":2017,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1880,"slug":1881,"type":15},{"name":2020,"slug":2021,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2024,"name":2024,"fn":2025,"description":2026,"org":2027,"tags":2028,"stars":25,"repoUrl":26,"updatedAt":2042},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2029,2032,2035,2038,2041],{"name":2030,"slug":2031,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2033,"slug":2034,"type":15},"Cost Optimization","cost-optimization",{"name":2036,"slug":2037,"type":15},"LLM","llm",{"name":2039,"slug":2040,"type":15},"Performance","performance",{"name":2020,"slug":2021,"type":15},"2026-04-06T18:40:44.377464",{"slug":2044,"name":2044,"fn":2045,"description":2046,"org":2047,"tags":2048,"stars":25,"repoUrl":26,"updatedAt":2054},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2049,2050,2053],{"name":2033,"slug":2034,"type":15},{"name":2051,"slug":2052,"type":15},"Database","database",{"name":2036,"slug":2037,"type":15},"2026-04-06T18:41:08.513425",600]