The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the MCP Server listing page.
CLI and MCP server for Agent Blueprint — 23 MCP tools for creating structured business profiles, generating pipeline artifacts, exploring blueprint data, syncing implementation state, and downloading full Agent Skills directories. Vendor-agnostic output works with ServiceNow, Salesforce, OpenClaw, or any platform.
Or run without installing via npx:
The same binary auto-detects MCP mode when stdin is piped (non-interactive). No separate command needed.
Add to your Claude Code MCP config (.claude/settings.json or project settings):
You can also start the MCP server explicitly with agentblueprint serve.
Current scope is intentionally narrow:
existing PAT + existing org -> create_business_profile -> generate_use_cases -> generate_blueprint or trigger_full_pipeline -> get_generation_status -> download_blueprint
This release does not handle organization creation, OAuth bootstrap, or free-form context extraction into the business profile.
Download a blueprint as a local Agent Skills directory that any coding agent can read from the filesystem. This is the recommended way to work with blueprints.
This creates an Agent Skills directory structure:
The Agent Skills standard is supported by Claude Code, Codex, Cursor, GitHub Copilot, Windsurf, and 18+ other coding agents. SKILL.md loads automatically at activation (~100 tokens), reference files load on demand.
| Tool | Description |
|---|---|
create_business_profile | Create or upsert a structured business profile for an existing organization |
generate_use_cases | Generate normalized use cases from the current business profile and readiness assessment |
generate_blueprint | Start blueprint generation for a chosen use case and return an auditId |
trigger_full_pipeline | Start the full pipeline for an existing business profile and return a jobId |
get_generation_status | Poll either blueprint generation or full-pipeline generation status |
list_blueprints | List all blueprints (summaries) |
get_blueprint | Blueprint summary — title, agents, phases, pattern |
get_business_case | Business case summary — ROI, pilot economics, recommendation |
get_implementation_plan | Implementation plan summary — epics, timeline, story counts |
get_use_case | Use case analysis for a blueprint |
get_implementation_spec | Implementation spec metadata |
get_business_profile | Organization business profile |
download_blueprint | Download full blueprint as Agent Skills file manifest |
The generate_blueprint and trigger_full_pipeline tools are asynchronous. Use get_generation_status to poll until the run completes, then call download_blueprint with the resolved blueprintId.
The get_blueprint, get_business_case, and get_implementation_plan tools return concise summaries optimized for agent context windows. For full details (agent specs, financial projections, user stories), use download_blueprint to get the complete Agent Skills directory.
| URI | Description |
|---|---|
agentblueprint://blueprints | Blueprint list (JSON) |
agentblueprint://blueprints/{id} | Blueprint detail (Markdown) |
agentblueprint://blueprints/{id}/spec | Implementation spec (Markdown) |
Three ways to provide your API token (checked in this order):
--token <key> flag on any commandAGENT_BLUEPRINT_API_KEY environment variableagentblueprint login (saved to ~/.config/agentblueprint/config.json)| Variable | Required | Default | Description |
|---|---|---|---|
AGENT_BLUEPRINT_API_KEY | No | — | Your API token (alternative to agentblueprint login) |
AGENT_BLUEPRINT_API_URL | No | https://app.agentblueprint.ai | API base URL |