submit_app_requirements
Submit app requirements to the Databutton MCP Server by providing app name, pitch, and detailed specifications to initiate app planning and generate initial MVP tasks.
Instructions
Submit app requirements
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the app | |
pitch | Yes | The pitch for the app | |
spec | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the app",
"type": "string"
},
"pitch": {
"description": "The pitch for the app",
"type": "string"
},
"spec": {
"additionalProperties": false,
"properties": {
"description": {
"description": "The app's specifications given in no more than 4-5 paragraphs",
"type": "string"
},
"design": {
"description": "The app's design",
"type": "string"
},
"targetAudience": {
"description": "The app's target audience",
"type": "string"
},
"typography": {
"description": "The app's typography",
"type": "string"
}
},
"required": [
"description",
"targetAudience",
"design",
"typography"
],
"type": "object"
}
},
"required": [
"name",
"pitch",
"spec"
],
"type": "object"
}