Agent Blueprint
Officialagentblueprint
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
Gehen Sie zu Agent Blueprint Settings > API Tokens
Klicken Sie auf "Create Token"
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 checkerDer 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 |
| Alle Blueprints auflisten (Zusammenfassungen) |
| Blueprint-Zusammenfassung – Titel, Agenten, Phasen, Muster |
| Business Case-Zusammenfassung – ROI, Pilot-Wirtschaftlichkeit, Empfehlung |
| Implementierungsplan-Zusammenfassung – Epics, Zeitplan, Story-Anzahl |
| Use-Case-Analyse für einen Blueprint |
| Metadaten der Implementierungsspezifikation |
| Geschäftsprofil der Organisation |
| 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 |
| Blueprint-Liste (JSON) |
| Blueprint-Detail (Markdown) |
| Implementierungsspezifikation (Markdown) |
Authentifizierung
Es gibt drei Möglichkeiten, Ihren API-Token bereitzustellen (geprüft in dieser Reihenfolge):
--token <key>Flag bei jedem BefehlAGENT_BLUEPRINT_API_KEYUmgebungsvariableagentblueprint login(gespeichert unter~/.config/agentblueprint/config.json)
Umgebungsvariablen
Variable | Erforderlich | Standard | Beschreibung |
| Nein | — | Ihr API-Token (Alternative zu |
| Nein |
| API-Basis-URL |
This server cannot be installed
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