share-stats
Retrieve statistics for shared links, including view counts and engagement metrics, to track content performance.
Instructions
Get statistics about your shared links (view counts, etc.).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/shares.ts:27-40 (handler)The `share-stats` tool registration and handler implementation. It uses `client.shares.getStats()` to retrieve statistics.
server.tool( "share-stats", "Get statistics about your shared links (view counts, etc.).", {}, async () => { try { const result = await client.shares.getStats(); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] }; } catch (err) { const message = err instanceof Error ? err.message : String(err); return { content: [{ type: "text", text: `Error: ${message}` }], isError: true }; } }, );