API_POST_COMMENTS_DOC

API_POST_COMMENTS_DOC is a cursor rule for Cursor from nicekon/zendesk-mcp-server-kon. It costs 49 tokens per session (2,319 once invoked), scanned A, original, Apache-2.0.

Reference rules for Zendesk community post comments, which are replies users add to discussions in a help center. They describe the comment data and the API requests used to manage it.

In plain words
What is it for?
Use them when creating, reading, updating, or deleting comments on Zendesk community posts.
Why use it?
They provide the required fields, permissions, authentication details, and response formats needed to work with comments correctly.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/nicekon/zendesk-mcp-server-kon/api_post_comments_doc
Clone the repo
git clone --depth 1 https://github.com/nicekon/zendesk-mcp-server-kon

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for API_POST_COMMENTS_DOC

README.md
[![agentmods](https://agentmods.dev/badge/rules/nicekon/zendesk-mcp-server-kon/api_post_comments_doc.svg)](https://agentmods.dev/rules/nicekon/zendesk-mcp-server-kon/api_post_comments_doc)
Your own site
<a href="https://agentmods.dev/rules/nicekon/zendesk-mcp-server-kon/api_post_comments_doc"><img src="https://agentmods.dev/badge/rules/nicekon/zendesk-mcp-server-kon/api_post_comments_doc.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,319 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00049 $0.02319
Opus 5 $0.00024 $0.01159
Sonnet 5 $0.00010 $0.00464
Haiku 4.5 $0.00005 $0.00232

Measured 4d ago against content hash 7d1c053df75e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

API_POST_COMMENTS_DOC scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl
.cursor/rules/API_POST_COMMENTS_DOC.mdc · 271 lines

How it starts

The opening of the file, as written. The whole thing — 271 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Post Comments Users can participate in community discussions by adding comments to community posts in the help center. The user must have a Zendesk account and their requests must be authenticated. Anonymous users can't add comments. For more information, see Anatomy of the help center.

JSON format Post Comments are represented as JSON objects with the following properties:

Name Type Read-only Mandatory Description author_id integer false false The id of the author of the comment. Writable on create by Help Center managers. See Create Post Comment body string false true The comment made by the author. See User content created_at string false false When the comment was created. Writable on create by Help Center managers. See Create Post Comment html_url string true false The community url of the comment id integer true false Automatically assigned when the comment is created non_author_editor_id integer true false The user id of whoever performed the most recent (if any) non-author edit. A non-author edit consists of an edit make by a user other than the author that creates or updates the body. Note that only edits made after May 17, 2021 will be reflected in this field. If no non-author edits have occured since May 17, 2021, then this field will be null. non_author_updated_at string true false When the comment was last edited by a non-author user official boolean false false Whether the comment is marked as official post_id integer true false The id of the post on which the comment was made updated_at string true false When the comment was last updated url string true false The API url of the comment vote_count integer true false The total number of upvotes and downvotes vote_sum integer true false The sum of upvotes (+1) and downvotes (-1), which may be positive or negative User content End users can add their own contents in the form of community posts, post comments, or article comments. Collectively, this is called user content. The format of user content is HTML-based.

Content may contain the following standard HTML tags:

Paragraphs and blocks: , , , Text formatting: , , , , , , Links and dividers: , Images: (where the src attribute has to reference a user-uploaded image) Headers: , , , , , Bullet lists: , , Description lists: , , Tables: , , , , , , , , Quotes and code snippets: , Semantics: , , , , , , , , , In addition, the content may contain these non-standard HTML tags:

@mentions: , where the contents of the tag should be the user ID of the mentioned user. Example: 1234 to mention the user whose ID is 1234. Even if the content is validated, the body that's output may not be identical to the request body. For example, adjustments may be made for security or standards-compliance reasons.

Example { "author_id": 89567, "body": "My printer is on fire!", "id": 35467, "official": false, "vote_count": 15, "vote_sum": 10 } List Comments GET /api/v2/community/posts/{post_id}/comments GET /api/v2/community/users/{user_id}/comments Lists all comments on a specific post or all the comments created by a specific user. When listing comments by specific user, the comments of the user making the request can be listed by specifying me as the id.

Allowed for End users Pagination Cursor pagination (recommended) Offset pagination See Pagination.

Sideloads You can sideload related records with the include query string parameter. The following sideloads are supported:

Name Will sideload users authors posts posts See Sideloading related records.

Parameters Name Type In Required Description post_id integer Path true The unique ID of the post Code Samples curl curl https://{subdomain}.zendesk.com/api/v2/community/posts/{post_id}/comments.json
-v -u {email_address}/token:{api_token} Go Java Nodejs Python import requests from requests.auth import HTTPBasicAuth

Read the full file on GitHub · 271 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 271 lines · 49 tokens per session scan A 7d1c053df75e

Subscribe to this mod's changes

API_POST_COMMENTS_DOC is a cursor rule published in the GitHub repository nicekon/zendesk-mcp-server-kon (0 stars, last pushed today), licensed Apache-2.0. It adds 49 tokens to every session and 2,319 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.