postman-mcp-server

create_api_comment

Create a new comment on an API (max 10,000 characters)

Input Schema

NameRequiredDescriptionDefault
apiIdYesAPI ID
contentYesComment text (max 10,000 characters)
threadIdNoThread ID for replies

Input Schema (JSON Schema)

{ "properties": { "apiId": { "description": "API ID", "type": "string" }, "content": { "description": "Comment text (max 10,000 characters)", "type": "string" }, "threadId": { "description": "Thread ID for replies", "type": "number" } }, "required": [ "apiId", "content" ], "type": "object" }

You must be authenticated.

Other Tools