Get share posts
getSharePostsGet share posts - Retrieve share posts for the authenticated user or organization
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| start | No | ||
| authors | No |
getSharePostsGet share posts - Retrieve share posts for the authenticated user or organization
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| start | No | ||
| authors | No |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows it's a safe read. The description adds the scope (user/org) but offers no other behavioral context like pagination, filtering, or return format.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and front-loaded, but it redundantly repeats the title ('Get share posts -') followed by a restatement with added scope. Still, it is efficient and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core purpose and scope, and annotations cover safety. However, with no output schema and no parameter explanations, it is only minimally viable. Missing pagination details and return value structure.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has three parameters with no descriptions (0% coverage), and the description provides zero information about count, start, or authors. The agent has no way to know the semantics of these parameters from the description or schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Retrieve') and resource ('share posts'), and adds scope ('for the authenticated user or organization'). It naturally differentiates from siblings like createSharePost (write) and getPersonProfile (different resource).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear context for when to use the tool (when needing share posts for the authenticated user or organization) but does not explicitly name alternatives or exclusions. The context is sufficient for basic selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource and action: creating posts, retrieving profiles, and retrieving posts. There is no overlap, making selection unambiguous for agents.
All tool names use a consistent camelCase verb_noun pattern (create, get). The naming is predictable and follows a clear convention throughout.
With 3 tools, the server is minimal but each tool serves a distinct purpose and fits the apparent scope. It is at the lower end of the typical range but not unreasonably thin.
The server covers create and read for posts but lacks update or delete operations. Profile coverage only includes fetching, not searching or updating, leaving notable lifecycle gaps.