Back to Browse

Toolfactory MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Build an agent tool once; ship it as Agent Skills, MCP servers, Agent Plugins / Claude / Codex

About

Build an agent tool once; ship it as Agent Skills, MCP servers, Agent Plugins / Claude / Codex

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (4 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: 4 highly-trusted packages.

11 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

Shell Command Execution

Runs commands on your machine. Be cautious — only use if you trust this plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-goatinahat-toolfactory": {
      "args": [
        "-y",
        "toolfactory"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

toolfactory

Build an agent tool once; ship it as an Agent Skill, an Agent Plugins bundle, a Claude Code, Codex or Cursor plugin, an MCP server, a CLI, an npm or PyPI package, an MCP Registry entry, an OpenClaw or Hermes native plugin, and a web page, from one operation module and one config file.

toolfactory is a scaffolder and a keeper-in-sync, not a runtime. It writes each surface in the shape that surface's own tooling would have written, proves it with that surface's own validator, and records every generated file in a lock so drift fails CI. Delete toolfactory from a repo it generated and every surface still installs, builds and publishes.

Install

Agent Skill

  • Agent Skillnpx skills add GoatInAHat/toolfactory
  • MCP servernpx -y toolfactory mcp Install in VS Code Install in Cursor
  • Claude Desktop extension — download toolfactory.mcpb from the GitHub Release and double-click to install
  • Claude Code pluginclaude plugin marketplace add GoatInAHat/toolfactory, then claude plugin install toolfactory@toolfactory
  • Codex plugincodex plugin marketplace add GoatInAHat/toolfactory, then codex plugin add toolfactory@toolfactory
  • Gemini CLI extensiongemini extensions install https://github.com/GoatInAHat/toolfactory
  • OpenClaw pluginopenclaw plugins install --link hosts/openclaw from a checkout
  • Hermes pluginhermes plugins install https://github.com/GoatInAHat/toolfactory#hosts/hermes/toolfactory_hermes
  • DSH plugin (experimental) — dsh plugin --profile <profile> add ./hosts/dsh from a checkout, or the release tarball toolfactory-dsh-0.2.1.tgz
  • Web appnpx -y toolfactory mcp --http --open serves the operations page beside the MCP endpoint on one port and opens it; over MCP or a skill, the web operation does the same and returns the URL.
  • npm packagenpm install toolfactory

Quickstart

mkdir hello && cd hello
npx toolfactory init --name hello --binding typescript --surfaces skill,agent-plugins,claude,mcp,cli,npm

init writes plugin.json (identity), dev.toolfactory/tool.json (surfaces, binding, config), the kernel scaffold, the .agents/ agent-config canon (skills, MCP servers, sync.py, setup and the per-harness hook carriers, so the tool is developable in any harness), and the first build. It also does what a human would do next: git init and a first commit, then bash .agents/setup, which renders the harness adapters, installs the git hooks that keep them in sync, and installs the dependencies. Its nextSteps end with the one reload line of the harness it is running inside, because reload is the one part a repository cannot automate.

Add --repo <owner>/<name> and it creates that GitHub repository through gh and pushes to it — private unless you pass --public — with one topic per selected surface, and prepares the live-tests environment when a .env is there. --dryRun prints the gh invocations instead. None of it is required: with no GitHub, plain git or no git at all, everything below still works.

Instruction-only Codex plugin

Use --runtime none --surfaces skill,codex when a plugin is only SKILL.md instructions for Codex. ToolFactory then emits no MCP server, operation snapshot, language scaffold, or consumer runtime dependency. binding remains required for config compatibility but is unused in this mode. This is available in the published npm package starting with ToolFactory 0.1.1.

  1. Write operations in src/ops.ts (TypeScript) or src/<pkg>/ops.py (Python). Each one is a name, a description, an input schema, an optional output schema, an optional requires list, and a handler.
  2. npx toolfactory introspect spawns the kernel MCP server and snapshots tools/list into dev.toolfactory/ops.json.
  3. npx toolfactory build regenerates every selected surface in-tree.
  4. npx toolfactory gate runs what CI runs, here: build, the drift check, every surface's upstream validator, your own checks and tests, and the credential-free host end-to-end.
  5. Commit everything. npx toolfactory package builds the release assets into dist/release/; CI runs the same gate and, on a v* tag, the same package job before publishing.

A TypeScript operation:

operation({
  name: "echo",
  description: "Echo text back.",
  input: z.object({ text: z.string() }),
  output: z.object({ text: z.string() }),
  annotations: { readOnlyHint: true },
  handler: async ({ text }) => ({ text }),
})

Commands

Every command exists as a CLI subcommand and as an MCP tool (toolfactory mcp), because toolfactory is built with toolfactory.

CommandDoes
initnew tool: identity file (keywords defaults to [name], the Kiro Powers/Agent Plugins activation trigger; --keywords overrides), tool.json, kernel scaffold, first build, git init + first commit, .agents/setup; --repo <owner>/<name> creates the GitHub repository (private; --public opts out) and pushes it
introspectsnapshot the kernel's tools/list into ops.json
buildregenerate every selected surface; delete orphans; write the lock
checkfail if the operation snapshot or any generated file drifted from the code (the CI gate)
validate [--surface]run each surface's upstream validator
coveragethe operation × surface verdict matrix
gaterun what CI runs, here: build, drift check, validators, your checks and tests, host e2e — stopping at the first failure
packagebuild every release asset into dist/release/ (npm tarball, distributions, plugin tarball and bundle zip, web build, coverage)
adopt / unadopt / ejecttake a file (or a whole surface) over from toolfactory, or give it back
doctorwhich upstream CLIs this machine can delegate to
secretsevery credential the project needs — its own sensitive config keys and the release registries' tokens — with where to mint each, whether it is present locally and on GitHub, and (--action check) whether the registry accepts it; never a value
bootstrap-repopush .env to GitHub through gh (config keys to the live-tests environment, release tokens to the repository), enable Pages, configure npm trusted publishing once the package exists, and print the one-time steps that are left
unpublishretract every registry a surface dropped since the previous tag published to; the release runs it, --dryRun shows it

Surfaces

Skills first. init selects the minimum that already serves every harness — skill, agent-plugins, mcp, cli and the binding's package registry — because everywhere that takes a plugin also takes a skill plus an MCP server, and a skill is one file with no upstream to track. Every host-specific plugin below is opt-in: add it only when that host needs what a skill and an MCP server cannot give it (a gateway tab, browser capability, a store listing).

SurfaceEmitsValidated by
skillskills/<name>/SKILL.md (frontmatter + operations block; body is yours), plus .agents/skills/<name>, a symlink to it, so Copilot, Codex, Hermes, DSH and .agents/sync.py see the same one skillagentskills validate
agent-pluginsroot plugin.json + mcp.json (consumed by OpenClaw, Hermes, Copilot, Cursor, Codex)Ajv against the 1.0.0 schemas
claude.claude-plugin/plugin.jsonclaude plugin validate
codex.codex-plugin/plugin.json + .agents/plugins/marketplace.json (codex plugin marketplace add <owner>/<repo>)real Codex CLI: marketplace add, plugin add, plugin list
cursor.cursor-plugin/ manifestschema-shaped
geminiroot gemini-extension.json — a Gemini CLI extension installable straight from the repo, reading your AGENTS.md and skills/gemini extensions validate
mcp, clithe kernel MCP server (stdio, or --http) and a CLI over your operations; each lists only the operations it can runMCP Inspector, --help
npm, pypipackage metadata merged into package.json / pyproject.tomlnpm pack, uv build
cargo, nuget, maven-central, rubygems, packagist, go-modulereleases for author-owned native packages alongside the tool; metadata stays in its native formatCargo, .NET, Maven, RubyGems, Composer, Go
homebrew, winget, scoop, chocolatey, apt, rpmnative packaging and catalog/repository distribution on the appropriate OSthe manager's own tooling
mcp-registryserver.jsonmcp-publisher
mcpbhosts/mcpb/manifest.json and a .mcpb release asset packed from the npm tarball — the one-click install Claude Desktop takesmcpb validate
openclaw-nativehosts/openclaw/, mirroring openclaw plugins init --type toolopenclaw plugins build --check, validate, plugin-inspector
hermes-nativehosts/hermes/, a manifest v2 pluginhermes plugins doctor --ci
webweb/, a shadcn/ui (Vite, React, Tailwind) app with a form per operation; your own pages sit beside it in App.tsxvite build, Playwright
browser-extensionhosts/browser/, one WXT extension built for Chromium, Firefox and Safari: the worker calls your kernel over loopback MCP, the popup is the web app, and the operations that need a page are yours to write in entrypoints/wxt build, web-ext lint, Playwright against a real Chromium
vscode-extensionhosts/vscode/, a native TypeScript extension with MCP discovery, command palette operations, settings and SecretStorage; activation and native contributions are yoursMicrosoft generator-code scaffold comparison, vsce package, real Extension Development Host
dsh (experimental)hosts/dsh/, a zero-code DSH (DeepSeek Harness) bundle: one Cordis patch row attaching your MCP server through @deepseek-ai/dsh-mcp-clienta keyless dsh --profile headless boot
workflows (always)ci.yml, release.yml (gate → package → publish legs → GitHub Release, plus Pages), compose.toolfactory.yaml, .env.example, renovate.json; every step is one toolfactory gate / toolfactory package runs without GitHubthe workflow itself
readme (always)the Install section of README.md (a marked region): one install line per selected surface, plus a static Agent Skill badge

Select vscode-extension together with mcp, cli, and the runtime registry (npm for TypeScript, pypi for Python). Set vscode.publisher in dev.toolfactory/tool.json, then build. Open hosts/vscode and press F5 to use the checkout's runtime, or run npm run vsix in that directory to package it. Native commands, views, webviews, language services, chat participants, and language-model tools use the full VS Code API in your own src/extension.ts. Add contribution points directly to its package.json; rebuilds preserve author entries and additional fields on generated entries. Marketplace and Open VSX release jobs use VSCE_PAT and OVSX_PAT after you register the publisher. Both can be disabled individually in tool.json.

The same native customization rule applies to the other surfaces: JSON, TOML and YAML manifests merge only projected fields, and host entry points retain your code outside the marked regions. OpenClaw, Hermes, DSH and browser shims can use their host's complete native API. adopt and eject remain available when replacing a generated integration entirely.

Package distribution is opt-in. PyPI supports both pip install and uv add; pip uses the same published wheel/sdist. Other ecosystems consume real native packages and metadata supplied by the author. See native package releases and system package releases for configuration and registry setup. Toolfactory itself continues to use npm as its package registry.

Driving toolfactory from an agent

Every command is an MCP tool, so a host can drive the whole loop without a shell — and nothing is registered by hand. Every generated project carries the .agents/ canon, so toolfactory and the tool's own kernel are already entries in .agents/mcp/servers.json, which bash .agents/setup renders into whichever harnesses are on the machine (.mcp.json, .cursor/mcp.json, .codex/config.toml, …) and keeps in sync from every one of them. root is an argument of every tool, so one registration serves every repository on the machine; from inside a host worktree, pass it explicitly.

Reload is the one part a repository cannot automate, so init prints the line that matches the harness it is running inside, and the generated AGENTS.md carries the table it comes from. Inside OpenClaw, install the tool you are building with openclaw plugins install --link <repo>/hosts/openclaw --force; inside Hermes, commit and run hermes plugins install file://<repo>#hosts/hermes/<pkg> — every hermes run is a fresh process, and hermes gateway restart is only for the messaging gateway.

GSD uses the same skills, CLI and MCP server; no GSD-specific surface is needed. From a generated project, run bash .agents/setup --all so .mcp.json is rendered even on a GSD-only machine, then discover its server in an interactive GSD session before unattended use. GSD launched by OpenClaw or Hermes loads the child project's configuration separately from the outer agent. See GSD compatibility for setup, runtime boundaries and the repeatable smoke test.

The boundary

Core logic is a pure function of JSON arguments, environment/config and the filesystem. An operation declares what it needs from a closed vocabulary: net, fs, shell, secret are portable; browser, model, user-input, channel are not. Every surface gets a per-operation verdict (native, bridged, degraded, excluded, with a reason) in COVERAGE.md, and an excluded operation is left off that surface's tool list rather than stubbed. A tool that needs a browser is written as two operations: one that takes the page content as an argument and runs everywhere, and one that declares browser and runs only where a browser exists.

See docs/spec.md for the normative design.

Repository

toolfactory's own repo is generated by toolfactory build from its dev.toolfactory/tool.json. pnpm check, pnpm test, pnpm toolfactory check and pnpm toolfactory validate are the gates.

Reviews

No reviews yet

Be the first to review this server!