create_aptos_project
Generate a new Aptos project by specifying a name and type (fullstack, contract, or client) using the Aptos CLI on the aptos-mcp server.
Instructions
Create a new Aptos project using the Aptos CLI.
Args:
project_name: Name of the project
project_type: Type of project (fullstack, contract, client)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_name | Yes | ||
project_type | No | fullstack |
Input Schema (JSON Schema)
{
"properties": {
"project_name": {
"title": "Project Name",
"type": "string"
},
"project_type": {
"default": "fullstack",
"title": "Project Type",
"type": "string"
}
},
"required": [
"project_name"
],
"title": "create_aptos_projectArguments",
"type": "object"
}