agent-blueprint/mcp-server

šŸ¤– Coding Agents
0 Views
0 Installs

šŸ“‡ ā˜ļø - 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.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "agent-blueprint-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "agent-blueprint-mcp-server"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

agentblueprint

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.

CLI Quick Start

# Install globally
npm install -g agentblueprint

# Store your API token (one-time)
agentblueprint login

# List blueprints
agentblueprint list

# Get a blueprint summary (JSON to stdout)
agentblueprint get blueprint <id>

# Get other artifacts
agentblueprint get business-case <id>
agentblueprint get use-case <id>
agentblueprint get implementation-plan <id>
agentblueprint get implementation-spec <id>
agentblueprint get business-profile

# Download as Agent Skills directory
agentblueprint download <id>

# Partner cross-org access
agentblueprint list --org <customer-org-id>
agentblueprint get blueprint <id> --org <customer-org-id>

Or run without installing via npx:

npx agentblueprint list --token <your-api-key>
npx agentblueprint get blueprint <id> --token <your-api-key>

MCP Server Setup

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):

{
  "mcpServers": {
    "agent-blueprint": {
      "command": "npx",
      "args": ["@agentblueprint/mcp-server"],
      "env": {
        "AGENT_BLUEPRINT_API_KEY": "<your-api-key>"
      }
    }
  }
}

You can also start the MCP server explicitly with agentblueprint serve.

Get an API Key

  1. Go to Agent Blueprint Settings > API Tokens
  2. Click "Create Token"
  3. Copy the token (shown once)

Supported Headless Workflow

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 Blueprint as Agent Skills

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.

# Using the CLI (after `agentblueprint login`)
agentblueprint download <id>
agentblueprint download <id> --dir ./my-skills

# Or via npx
npx agentblueprint download --token <key> --blueprint <id>

This creates an Agent Skills directory structure:

.agent-blueprint/<blueprint-slug>/
ā”œā”€ā”€ SKILL.md                              # Overview + frontmatter (auto-discovered by agents)
ā”œā”€ā”€ references/
│   ā”œā”€ā”€ business-context.md               # Use case, pain points, transformation story
│   ā”œā”€ā”€ agent-specifications.md           # Full agent specs with tools, guardrails, metrics
│   ā”œā”€ā”€ financial-case.md                 # ROI, cost breakdown, sensitivity, 5-year projection
│   ā”œā”€ā”€ implementation-roadmap.md         # Epics, stories, timeline, roles, dependencies
│   ā”œā”€ā”€ architecture-decisions.md         # Platform, pattern, integration gaps, feasibility
│   └── guardrails-and-governance.md      # Risks, mitigation, per-agent guardrails
└── scripts/
    └── validate-spec.sh                  # Structure completeness checker

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.

Available Tools

ToolDescription
create_business_profileCreate or upsert a structured business profile for an existing organization
generate_use_casesGenerate normalized use cases from the current business profile and readiness assessment
generate_blueprintStart blueprint generation for a chosen use case and return an auditId
trigger_full_pipelineStart the full pipeline for an existing business profile and return a jobId
get_generation_statusPoll either blueprint generation or full-pipeline generation status
list_blueprintsList all blueprints (summaries)
get_blueprintBlueprint summary — title, agents, phases, pattern
get_business_caseBusiness case summary — ROI, pilot economics, recommendation
get_implementation_planImplementation plan summary — epics, timeline, story counts
get_use_caseUse case analysis for a blueprint
get_implementation_specImplementation spec metadata
get_business_profileOrganization business profile
download_blueprintDownload 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.

Available Resources

URIDescription
agentblueprint://blueprintsBlueprint list (JSON)
agentblueprint://blueprints/{id}Blueprint detail (Markdown)
agentblueprint://blueprints/{id}/specImplementation spec (Markdown)

Authentication

Three ways to provide your API token (checked in this order):

  1. --token <key> flag on any command
  2. AGENT_BLUEPRINT_API_KEY environment variable
  3. agentblueprint login (saved to ~/.config/agentblueprint/config.json)

Environment Variables

VariableRequiredDefaultDescription
AGENT_BLUEPRINT_API_KEYNo—Your API token (alternative to agentblueprint login)
AGENT_BLUEPRINT_API_URLNohttps://app.agentblueprint.aiAPI base URL

Related MCP Servers

5dive-ai/5dive-mcp

šŸ“‡ šŸ  šŸŽ 🪟 🐧 - Manage a 5dive agent fleet from any MCP client: file tasks, message and inspect agents, and read the fleet digest. Thin adapter over the 5dive CLI.

šŸ¤– Coding Agents0 views
agentic-mcp-tools/owlex

šŸ šŸ  šŸŽ 🪟 🐧 - AI council server: query CLI agents (Claude Code, Codex, Gemini, and OpenCode) in parallel with deliberation rounds

šŸ¤– Coding Agents0 views
alpadalar/netops-mcp

šŸ šŸ  - Comprehensive DevOps and networking MCP server providing standardized access to essential infrastructure tools. Features network monitoring, system diagnostics, automation workflows, and infrastructure management with AI-powered operational insights.

šŸ¤– Coding Agents0 views
aresyn/codex-control-plane-mcp

šŸ šŸ  🪟 - Durable control plane for long-running Codex Desktop tasks. Submit tasks asynchronously, poll operation/workflow state, approve Plan Mode, recover retries, and use hook-backed SQLite history for search and diagnostics.

šŸ¤– Coding Agents0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

Last checked: 7/28/2026, 5:30:35 AM

Unclaimed listing (imported or pending owner verification). Claim it →
ā˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.