# agent-blueprint/mcp-server [Health: Active]

**Category:** 🤖 Coding Agents  
**Repository:** https://github.com/agent-blueprint/mcp-server  
**GitHub Stars:** 3  
**npm Downloads (last month):** 102  
**Views:** 3  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/agent-blueprint-mcp-server

## Description
8 MCP tools for exploring and downloading AI agent blueprints. List blueprints, get summaries, download full Agent Skills directories for implementation by coding agents. Vendor-agnostic output works with any enterprise platform. Install: npx agentblueprint.

## Tools
Capabilities this server exposes over MCP:

- **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

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "mcp-server": {
    "command": "npx",
    "args": ["-y","agentblueprint"],
    "env": {
      "AGENT_BLUEPRINT_API_KEY": "",
      "AGENT_BLUEPRINT_API_URL": ""
    }
  }
}
```

**Requires environment variables:** `AGENT_BLUEPRINT_API_KEY`, `AGENT_BLUEPRINT_API_URL` — the values above are empty placeholders; fill in real credentials before running (see the repository for what each one is for).

## Documentation

## What agent-blueprint/mcp-server MCP server does

The agent-blueprint/mcp-server MCP server exposes Agent Blueprint workflows to MCP-compatible clients. It can create or update a structured profile for an existing organization, derive normalized use cases, start blueprint generation, and launch the full generation pipeline. It also provides read access to blueprint and organization artifacts, including business cases, implementation plans, use-case analyses, implementation specifications, and business profiles.

The server is intended for workflows that begin with an existing organization and an available API token. It does not create organizations, perform OAuth setup, or extract free-form source material into a business profile.

## How it works

Generation is asynchronous. `generate_blueprint` returns an audit identifier, while `trigger_full_pipeline` returns a job identifier. Use `get_generation_status` to poll either process until it completes, then use the resulting blueprint identifier with `download_blueprint`.

The agent-blueprint/mcp-server MCP server returns concise artifact summaries for context-sensitive operations. A downloaded blueprint contains an Agent Skills directory with a `SKILL.md` file and reference documents covering business context, agent specifications, financial details, implementation planning, architecture decisions, and governance. The download also includes a shell script for checking structure completeness.

The output is described as vendor-agnostic and can be used with platforms such as ServiceNow, Salesforce, or OpenClaw. The generated Agent Skills directory is intended for coding agents that can read files from the local filesystem.

## Setup and configuration

The repository documents installation with the `agentblueprint` npm package. The MCP configuration runs `npx` with `@agentblueprint/mcp-server`; the binary detects MCP mode when standard input is piped. It can also be started explicitly with `agentblueprint serve`.

Authentication uses an Agent Blueprint API token. The server checks `AGENT_BLUEPRINT_API_KEY`, while the CLI can also use a token flag or credentials saved by `agentblueprint login`. The API base URL defaults to `https://app.agentblueprint.ai` and can be overridden with `AGENT_BLUEPRINT_API_URL`.

## Tools and capabilities

The agent-blueprint/mcp-server MCP server includes tools for:

- Creating or upserting an existing organization’s business profile.
- Generating use cases and starting either individual blueprint or full-pipeline generation.
- Polling generation status.
- Listing blueprints and retrieving blueprint, business case, use case, implementation plan, implementation specification, and business profile data.
- Downloading a complete blueprint as an Agent Skills file manifest.

It also publishes resources for a blueprint list, individual blueprint details, and implementation specifications.

## Limitations and notes

Summary tools are designed to keep responses concise. Full agent specifications, financial projections, user stories, and related implementation details are available through the downloaded Agent Skills directory rather than the summary responses.

The documented headless flow assumes an existing personal access token and organization. Organization creation, OAuth bootstrap, and free-form context extraction are outside the current scope. The API token should be supplied through the environment, the CLI login flow, or a command-line token option as appropriate.

_Full upstream README: https://allmcps.com/mcp/agent-blueprint-mcp-server/readme_

