generateWork
Generate project-specific content using the DeepWriter MCP Server by providing an API key and project ID. Customize output by adjusting default settings.
Instructions
Generate content for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | Yes | The DeepWriter API key for authentication. | |
is_default | No | Whether to use default settings (optional, defaults to true). | |
project_id | Yes | The ID of the project to generate work for. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"api_key": {
"description": "The DeepWriter API key for authentication.",
"type": "string"
},
"is_default": {
"description": "Whether to use default settings (optional, defaults to true).",
"type": "boolean"
},
"project_id": {
"description": "The ID of the project to generate work for.",
"type": "string"
}
},
"required": [
"api_key",
"project_id"
],
"type": "object"
}