get_salary
Retrieve current compensation details including base salary, stocks, bonus, and total earnings to understand your complete financial package.
Instructions
Get your current salary/compensation details including base, stocks, bonus, and total compensation
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/profile.ts:51-59 (handler)The tool "get_salary" is registered and handled here using client.getProfileSalary().
server.tool( 'get_salary', 'Get your current salary/compensation details including base, stocks, bonus, and total compensation', {}, async () => { const salary = await client.getProfileSalary(); return { content: [{ type: 'text' as const, text: JSON.stringify(salary, null, 2) }] }; } );