factory-mcp-bootstrap

factory-mcp-bootstrap is a skill for Claude Code, Codex from OutlineDriven/odin-claude-plugin. It costs 81 tokens per session (1,297 once invoked), scanned B, a copy of factory-mcp-bootstrap, Apache-2.0.

A setup tool that connects Claude Code, Codex, or Cursor to a Warp Factory MCP server. It creates a temporary access credential, registers the server, reloads the coding agent, and checks that the connection works.

In plain words
What is it for?
Use it to add a Warp Factory MCP endpoint to Claude Code, Codex, or Cursor and verify that its tools and setup resources can be discovered.
Why use it?
Connecting an outside coding agent to Warp Factory requires several configuration and authentication steps. This handles those steps and checks for common connection failures.

Skill for Claude CodeCodex

Written for Claude Code and Codex: disable-model-invocation in frontmatter, but also agents/openai.yaml present. Also seen: reads .claude/ paths; mentions Claude Code; mentions Codex.

Part of the odin-agent plugin — 46 skills shipped together

Good fit Use it to add a Warp Factory MCP endpoint to Claude Code, Codex, or Cursor and verify that its tools and setup resources can be discovered.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/outlinedriven/odin-claude-plugin/factory-mcp-bootstrap
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add OutlineDriven/odin-claude-plugin --skill factory-mcp-bootstrap
Clone the repo
git clone --depth 1 https://github.com/OutlineDriven/odin-claude-plugin

Made for: Claude Code, Codex.

Or install odin-agent, the plugin that ships this one along with the rest of its 46 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for factory-mcp-bootstrap

README.md
[![agentmods](https://agentmods.dev/badge/skills/outlinedriven/odin-claude-plugin/factory-mcp-bootstrap/github.svg)](https://agentmods.dev/skills/outlinedriven/odin-claude-plugin/factory-mcp-bootstrap)
Your own site
<a href="https://agentmods.dev/skills/outlinedriven/odin-claude-plugin/factory-mcp-bootstrap"><img src="https://agentmods.dev/badge/skills/outlinedriven/odin-claude-plugin/factory-mcp-bootstrap/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for factory-mcp-bootstrap

Your own site · 80×15
<a href="https://agentmods.dev/skills/outlinedriven/odin-claude-plugin/factory-mcp-bootstrap"><img src="https://agentmods.dev/badge/skills/outlinedriven/odin-claude-plugin/factory-mcp-bootstrap.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,297 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00081 $0.01297
Opus 5 $0.00041 $0.00648
Sonnet 5 $0.00016 $0.00259
Haiku 4.5 $0.00008 $0.00130

Measured 5d ago against content hash df258e648731, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade B, and why

factory-mcp-bootstrap scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads MCP configurationmediumAgent snooping

mcp.json carries server URLs and auth tokens; reading it lets a mod discover and abuse other integrations.

- Claude Code: add the server entry to `.claude/mcp.json` (project) or `~/.claude/mcp.json` (global), pointing at `{server_root}/api/v1/mcp/factory` with `Authorization: Bearer $WARP_API_KEY` in the headers.
Origin

This is a copy

100% identical to factory-mcp-bootstrap — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/odin-agent/skills/factory-mcp-bootstrap/SKILL.md · 55 lines

How it starts

The opening of the file, as written. The whole thing — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Factory MCP bootstrap

Contract

Field Bound contract
Trigger Someone outside Warp wants a third-party coding agent to reach a Warp Factory: "set up Factory MCP in Claude Code / Codex / Cursor", "add the factory MCP server", "connect my agent to Warp Factory"
Authority Human-only. Mints a 30-day API credential and writes a bearer-token MCP registration; both are credential and data-at-rest mutations requiring explicit human invocation
Side effect Confirms the oz CLI, runs oz login, mints a 30-day API key exported as WARP_API_KEY, writes a harness-specific MCP registration carrying an Authorization: Bearer header, reloads the harness, and performs read-only protocol verification calls
Done The MCP endpoint {server_root}/api/v1/mcp/factory is registered with a valid bearer token; tools/list shows the ten Factory tools; list_factories returns any non-auth-error response (empty allowed); the endpoint serves its factory setup document through both resources/list and resources/read without an auth error; the user is told setup is done and the agent hands off and stops

Inputs

  • Target harness: which coding agent to wire — Claude Code, Codex, or Cursor. Must be supplied.
  • Server root: the Warp Factory API root URL. Must be supplied if not inferable from oz context.
  • Factory creation: optional. Create a factory only when the user explicitly requests it; otherwise skip.

Procedure

  1. Confirm the oz CLI is installed by running oz --version. If it is not on PATH, tell the user that oz is required and stop. Do not invent or guess an install command. Done when: oz is confirmed installed, or the user is told it is required and the skill stops.
  2. Run oz login and let the human complete authentication interactively. Do not proceed until login succeeds. Done when: login succeeds.
  3. Provision a short-lived bearer credential. Mint a 30-day API key with oz api-key create --expires 30d and export it as WARP_API_KEY in the shell environment that will launch the target harness. Done when: WARP_API_KEY is exported with a valid key.
  4. Determine the target harness configuration path and schema. Write the MCP server registration with the bearer token to the configuration file:
    • Claude Code: add the server entry to .claude/mcp.json (project) or ~/.claude/mcp.json (global), pointing at {server_root}/api/v1/mcp/factory with Authorization: Bearer $WARP_API_KEY in the headers.
    • Codex: add the server entry to ~/.codex/mcp.json with the same URL and bearer header.
    • Cursor: add the server entry to ~/.cursor/mcp.json with the same URL and bearer header. Done when: the MCP registration is written for the target harness with the bearer token.
  5. Reload the harness so it picks up the new registration. For Claude Code: restart the session or run the MCP reload command. For Codex: restart the Codex process. For Cursor: restart Cursor or reload the MCP configuration. Done when: the harness picks up the new registration.
  6. Verify protocol-level discovery by calling tools/list on the registered endpoint. Confirm the ten Factory tools are present: list_factories, create_factory, get_factory, update_factory, delete_factory, list_factory_runs, create_factory_run, get_factory_run, cancel_factory_run, get_factory_status. Done when: the ten Factory tools are present in the tools/list response.
  7. Call list_factories and confirm the response is not an authentication error. An empty list is acceptable. Done when: the response is not an auth error (empty list allowed).
  8. Confirm the endpoint serves its factory setup document: call resources/list and confirm the setup resource URI (factory://setup) is present, then call resources/read on that URI and confirm content is returned without an auth error. Done when: resources/list includes the setup document URI and resources/read returns its content without an auth error.
  9. If the user explicitly requested a factory, create it now; otherwise skip. Done when: the factory is created or skipped.
  10. Tell the user setup is done, hand off, and stop. Done when: the user is told setup is done and the agent stops.

Read the full file on GitHub · 55 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 55 lines · 81 tokens per session scan B df258e648731

Subscribe to this mod's changes

factory-mcp-bootstrap is a skill published in the GitHub repository OutlineDriven/odin-claude-plugin (35 stars, last pushed 2d ago), licensed Apache-2.0. It adds 81 tokens to every session and 1,297 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 1 finding (reads mcp configuration). It is 100% identical to factory-mcp-bootstrap, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens