build_dapp_on_aptos
Create a full-stack decentralized application on Aptos blockchain with resources for Move smart contracts, project management, and frontend development.
Instructions
Build a complete full-stack Aptos dApp - returns all resources from move, management, and frontend directories. Use this tool when you need guidance on how to build a full-stack dapp on Aptos.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.ts:70-89 (handler)The definition and handler for the "build_dapp_on_aptos" tool. It calls `readAllMarkdownFromDirectories` to aggregate documentation content.
server.addTool({ description: "Build a complete full-stack Aptos dApp - returns all resources from move, management, and frontend directories. Use this tool when you need guidance on how to build a full-stack dapp on Aptos.", execute: async () => { const content = await readAllMarkdownFromDirectories([ "frontend", "move", "management", ]); return { text: content || "No content found in management, move, and frontend directories.", type: "text", }; }, name: "build_dapp_on_aptos", parameters: z.object({}), });