action motaword_get_project_stats { label: "View your project statistics" provider: motaword method: GET path: "/stats/projects" encoding: json output: { type: "object" properties: { stats: { type: "array" items: { type: "object" properties: { languages: { type: "array" items: { type: "string" } } month: { type: "string" } number_of_projects: { type: "integer" format: "int64" } total_spending: { type: "number" format: "float" } week: { type: "string" } } } } } } }