+ "When using this tool, always use the `jq_filter` parameter to reduce the response size and improve performance.\n\nOnly omit if you're sure you don't need the data.\n\nList connected accounts on this device. Use to pick account context.\n\n# Response Schema\n```json\n{\n $ref: '#/$defs/get_accounts_response',\n $defs: {\n get_accounts_response: {\n type: 'object',\n description: 'Response payload for listing connected Beeper accounts.',\n properties: {\n accounts: {\n type: 'array',\n description: 'Connected accounts the user can act through. Includes accountID, network, and user identity.',\n items: {\n $ref: '#/$defs/account'\n }\n }\n },\n required: [ 'accounts'\n ]\n },\n account: {\n type: 'object',\n description: 'A chat account added to Beeper',\n properties: {\n accountID: {\n type: 'string',\n description: 'Chat account added to Beeper. Use this to route account-scoped actions.'\n },\n network: {\n type: 'string',\n description: 'Display-only human-readable network name (e.g., \\'WhatsApp\\', \\'Messenger\\'). You MUST use \\'accountID\\' to perform actions.'\n },\n user: {\n $ref: '#/$defs/user'\n }\n },\n required: [ 'accountID',\n 'network',\n 'user'\n ]\n },\n user: {\n type: 'object',\n description: 'A person on or reachable through Beeper. Values are best-effort and can vary by network.',\n properties: {\n id: {\n type: 'string',\n description: 'Stable Beeper user ID. Use as the primary key when referencing a person.'\n },\n cannotMessage: {\n type: 'boolean',\n description: 'True if Beeper cannot initiate messages to this user (e.g., blocked, network restriction, or no DM path). The user may still message you.'\n },\n email: {\n type: 'string',\n description: 'Email address if known. Not guaranteed verified.'\n },\n fullName: {\n type: 'string',\n description: 'Display name as shown in clients (e.g., \\'Alice Example\\'). May include emojis.'\n },\n imgURL: {\n type: 'string',\n description: 'Avatar image URL if available. May be temporary or local-only to this device; download promptly if durable access is needed.'\n },\n isSelf: {\n type: 'boolean',\n description: 'True if this user represents the authenticated account\\'s own identity.'\n },\n phoneNumber: {\n type: 'string',\n description: 'User\\'s phone number in E.164 format (e.g., \\'+14155552671\\'). Omit if unknown.'\n },\n username: {\n type: 'string',\n description: 'Human-readable handle if available (e.g., \\'@alice\\'). May be network-specific and not globally unique.'\n }\n },\n required: [ 'id'\n ]\n }\n }\n}\n```",
0 commit comments