Add MCP tool for replying to posts

This commit is contained in:
Tim
2025-10-27 20:24:47 +08:00
parent 39875acd35
commit dca14390ca
4 changed files with 136 additions and 4 deletions
+6
View File
@@ -177,6 +177,12 @@ class CommentReplyResult(BaseModel):
comment: CommentData = Field(description="Reply comment returned by the backend.")
class CommentCreateResult(BaseModel):
"""Structured response returned when creating a comment on a post."""
comment: CommentData = Field(description="Comment returned by the backend.")
class PostSummary(BaseModel):
"""Summary information for a post."""