Skip to main content
Glama
agent-blueprint

Agent Blueprint

Official

agentblueprint

CLI- und MCP-Server für Agent Blueprint – gibt Ihrem Coding-Agenten Lesezugriff auf Ihre KI-Blueprints, Business Cases, Implementierungspläne und Spezifikationen.

CLI-Schnellstart

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

Oder führen Sie es ohne Installation über npx aus:

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

MCP-Server-Einrichtung

Die gleiche Binärdatei erkennt den MCP-Modus automatisch, wenn stdin weitergeleitet wird (nicht interaktiv). Es ist kein separater Befehl erforderlich.

Fügen Sie dies zu Ihrer Claude Code MCP-Konfiguration hinzu (.claude/settings.json oder Projekteinstellungen):

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

Sie können den MCP-Server auch explizit mit agentblueprint serve starten.

API-Schlüssel abrufen

  1. Gehen Sie zu Agent Blueprint Settings > API Tokens

  2. Klicken Sie auf "Create Token"

  3. Kopieren Sie das Token (wird nur einmal angezeigt)

Blueprint als Agent Skills herunterladen

Laden Sie einen Blueprint als lokales Agent Skills-Verzeichnis herunter, das jeder Coding-Agent vom Dateisystem lesen kann. Dies ist die empfohlene Arbeitsweise mit 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>

Dies erstellt eine Agent Skills-Verzeichnisstruktur:

.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

Der Agent Skills-Standard wird von Claude Code, Codex, Cursor, GitHub Copilot, Windsurf und über 18 weiteren Coding-Agenten unterstützt. SKILL.md wird bei der Aktivierung automatisch geladen (~100 Token), Referenzdateien werden bei Bedarf geladen.

Verfügbare Tools

Tool

Beschreibung

list_blueprints

Alle Blueprints auflisten (Zusammenfassungen)

get_blueprint

Blueprint-Zusammenfassung – Titel, Agenten, Phasen, Muster

get_business_case

Business Case-Zusammenfassung – ROI, Pilot-Wirtschaftlichkeit, Empfehlung

get_implementation_plan

Implementierungsplan-Zusammenfassung – Epics, Zeitplan, Story-Anzahl

get_use_case

Use-Case-Analyse für einen Blueprint

get_implementation_spec

Metadaten der Implementierungsspezifikation

get_business_profile

Geschäftsprofil der Organisation

download_blueprint

Vollständigen Blueprint als Agent Skills-Dateimanifest herunterladen

Die Tools get_blueprint, get_business_case und get_implementation_plan liefern prägnante Zusammenfassungen, die für Agenten-Kontextfenster optimiert sind. Für vollständige Details (Agenten-Spezifikationen, Finanzprognosen, User Stories) verwenden Sie download_blueprint, um das vollständige Agent Skills-Verzeichnis zu erhalten.

Verfügbare Ressourcen

URI

Beschreibung

agentblueprint://blueprints

Blueprint-Liste (JSON)

agentblueprint://blueprints/{id}

Blueprint-Detail (Markdown)

agentblueprint://blueprints/{id}/spec

Implementierungsspezifikation (Markdown)

Authentifizierung

Es gibt drei Möglichkeiten, Ihren API-Token bereitzustellen (geprüft in dieser Reihenfolge):

  1. --token <key> Flag bei jedem Befehl

  2. AGENT_BLUEPRINT_API_KEY Umgebungsvariable

  3. agentblueprint login (gespeichert unter ~/.config/agentblueprint/config.json)

Umgebungsvariablen

Variable

Erforderlich

Standard

Beschreibung

AGENT_BLUEPRINT_API_KEY

Nein

Ihr API-Token (Alternative zu agentblueprint login)

AGENT_BLUEPRINT_API_URL

Nein

https://app.agentblueprint.ai

API-Basis-URL

-
security - not tested
F
license - not found
-
quality - not tested

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/agent-blueprint/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server