build-with-ak
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@build-with-akCreate a new product showcase from the saas_product_launch template for my AI writing tool"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Build with AK Toolkits ๐
Official developer CLI and Model Context Protocol (MCP) server for creating, validating, previewing, and submitting product showcases on Build with AK (agentkit.best/build-with-ak).
Package: @bestagentkits/build-with-ak ยท Binaries: build-with-ak, build-with-ak-mcp
Overview
Build with AK Toolkits lets developers and AI coding agents publish rich, block-based product showcases to the AgentKit directory โ from the terminal, from an interactive TUI studio, or autonomously via MCP.
CLI โ
init,template,slug,media,pull,validate,diff,preview,push,submit,studio.Terminal Studio โ keyboard-driven TUI for metadata, 9 block types, reorder, and review.
Local preview โ loopback
127.0.0.1live-reload server and offline static HTML export.Dual-transport MCP server โ local
stdiofor Cursor/Claude/OpenCode, and a Cloudflare Workers Streamable HTTP server with OAuth 2.1 (RFC 9728) +x-api-key.9 layout blocks, 5 curated templates โ schema-parity with the
ak-webbackend; media fields require finalized asset UUIDs.Atomic CAS push & frozen submit โ single-call
PUT /listingwithexpectedDraftRevisionId, and moderation-frozenPOST /submit.
Related MCP server: bookclaw-mcp
Quick Start
# Install
npm install -g @bestagentkits/build-with-ak # or: pnpm add -g / bun add -g
# Configure your customer API key (generate at agentkit.best โ Customer Dashboard)
export AGENTKIT_API_KEY=ck_live_...
export AGENTKIT_ENV=staging # or production (default)
# Scaffold a workspace from a template
build-with-ak init --template saas_product_launch
# Upload media, validate, preview
build-with-ak media upload ./assets/logo.png --kind logo --ref logo
build-with-ak validate --ready
build-with-ak preview --watch
# Push (atomic CAS) then submit for moderation
build-with-ak push --yes
build-with-ak submit --yesEvery command accepts --json for machine-readable { ok, data?, error? } output and standardized exit codes (0 ok, 2 validation, 3 auth, 4 not found, 5 CAS conflict, 6 network).
Agent & Marketplace Integrations
1. Claude Code & Claude Desktop Plugin
Install directly via Claude Plugin Marketplace:
claude plugin add bestagentkits/build-with-ak-toolkits2. skills.sh (Agent Ecosystem)
Install the skill to your coding agent (Claude Code, Cursor, Codex, OpenCode, Amp) via skills.sh:
# Install to current project
npx skills add bestagentkits/build-with-ak-toolkits
# Or install globally across all supported agents
npx skills add bestagentkits/build-with-ak-toolkits -g -y
# Or use directly without installing
npx skills use bestagentkits/build-with-ak-toolkits --skill build-with-ak3. Hosted Remote MCP Server (Streamable HTTP)
Connect any Streamable HTTP MCP client (Cursor, Claude, OpenCode, Windsurf) to the production edge endpoint:
{
"mcpServers": {
"build-with-ak": {
"type": "http",
"url": "https://bwak.agentkit.best/mcp",
"headers": {
"x-api-key": "ck_live_..."
}
}
}
}4. Local stdio MCP Server
Add to your local MCP client configuration:
{
"mcpServers": {
"build-with-ak": {
"command": "npx",
"args": ["-y", "--package=@bestagentkits/build-with-ak", "build-with-ak-mcp"],
"env": {
"AGENTKIT_API_KEY": "ck_live_...",
"AGENTKIT_ENV": "production"
}
}
}
}5. OpenAI / ChatGPT Service Discovery
The live Cloudflare Worker provides standard discovery and schema manifests:
AI Plugin Manifest:
https://bwak.agentkit.best/.well-known/ai-plugin.jsonOpenAPI 3.1.0 Specification:
https://bwak.agentkit.best/openapi.jsonOAuth 2.1 Metadata (RFC 9728):
https://bwak.agentkit.best/.well-known/oauth-protected-resourceService Index:
https://bwak.agentkit.best/
Documentation
Agent Skill:
skills/build-with-ak/SKILL.md
Development
pnpm install
pnpm test:base # base 11-endpoint contract suite (100% green)
pnpm test:target # target extension endpoints (media library, slug availability)
pnpm build # bundle CLI, MCP stdio, worker, and library
pnpm typecheck
pnpm sync:contracts # re-pin wire schemas from ak-web (intentional contract upgrades only)
pnpm check:drift # verify committed snapshots match the pinned commitWire schemas are pinned from bestagentkits/ak-web at commit 500fe6ef and committed under src/contracts/generated/ with provenance digests in src/contracts/provenance.ts.
License
MIT ยฉ AgentKit
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Create App Store screenshots, icons, ASO copy, localization, and revisions via hosted MCP.
Generate and manage Storydoc presentations from any MCP-compatible client.
An agent-friendly API for product changelogs. A unified registry via CLI, API, or MCP.
Generate a typed SDK, CLI, and MCP server from any OpenAPI or GraphQL spec, and keep them current.
Related MCP Servers
- AlicenseAqualityBmaintenanceAn MCP server that scaffolds runnable Roku channels from a validated AppSpec, zips them, and optionally sideloads to a Roku device.511MIT
- AlicenseNot gradedqualityCmaintenanceExposes BookClaw's author workflow to MCP clients over Streamable HTTP, providing tools for managing books, projects, pipelines, and more.MIT
- FlicenseNot gradedqualityDmaintenanceEnables project creation with validated flow and automatic registration via MCP, supporting scaffold, bootstrap, and validation tools.
- AlicenseNot gradedqualityFmaintenanceProvides utilities to help maintain MCP repositories, including testing tools, parameter type support, and multiple transports (STDIO, SSE, Streamable HTTP).169MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/bestagentkits/build-with-ak-toolkits'
If you have feedback or need assistance with the MCP directory API, please join our Discord server