INDIVIDUAL MCP TOOL
buy_scaffold_template
Same repo hand-off as get_scaffold_template — a private GitHub repo BotKelp owns and manages itself, plus a short-lived clone credential — but paid per call in USDC via the x402 protocol instead of a BotKelp account: no signup, no API key, callable by any agent with its own wallet.
LIVE ENDPOINT
https://agent-scaffold-mcp.vercel.app/mcp
Connect to this endpoint to inspect the live schema for buy_scaffold_template and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name, description or schema mentions credentials.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.botkelp]
url = "https://agent-scaffold-mcp.vercel.app/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"botkelp": {
"type": "http",
"url": "https://agent-scaffold-mcp.vercel.app/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: botkelp
Remote MCP URL: https://agent-scaffold-mcp.vercel.app/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"botkelp": {
"url": "https://agent-scaffold-mcp.vercel.app/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"botkelp": {
"type": "http",
"url": "https://agent-scaffold-mcp.vercel.app/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "botkelp",
"transport": "streamable-http",
"url": "https://agent-scaffold-mcp.vercel.app/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
search_components— Search the BotKelp component registry (Next.resolve_components— Look up catalog versions against a stack without generating files.generate_scaffold— Generate a project scaffold from catalog component ids.get_scaffold_template— Requests a build for the given component ids, backed by a private GitHub repo BotKelp owns and manages itself under its own org — never your account.get_site_profile— Return this BotKelp account's dashboard legal documents (privacy, terms, cookies, licence) as JSON bodies + destination paths — not as files in a template repo.check_component_updates— Read-only, side-effect-free: compares the component versions you currently have pinned against BotKelp's current registry and reports what has newer versions available, plus each component's latest CI freshness status.verify_scaffold— Runs a real `npm install && npm run build` against the given files and reports whether the project builds.create_project— Register a project: links a GitHub repo the agent will maintain a persistent, synced local clone for, so future tasks can branch off an up-to-date base without re-cloning.