listProjects
Retrieve all projects associated with the authenticated user on DeepWriter MCP Server using a valid API key. Simplify project management and access content generation tools efficiently.
Instructions
List all projects for the authenticated user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | Yes | The DeepWriter API key for authentication. |
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"
}
},
"required": [
"api_key"
],
"type": "object"
}