workflow-os-mcp

MCP server for the workflow-os prompt and execution system.

Quick Start

Install and build:

pnpm install
pnpm run build

Run locally:

node dist/index.js

Run in HTTP mode:

MCP_TRANSPORT=http MCP_PORT=<port> node dist/index.js
# Example: MCP_TRANSPORT=http MCP_PORT=3000 node dist/index.js

HTTP docs in HTTP mode:

Vercel build:

pnpm run build:vercel

Docs

Quality Checks

pnpm run typecheck
pnpm run lint
pnpm run test:coverage
pnpm run build