# linkf.su - Temporary Email Service > A fast, anonymous, and secure temporary email service. Generate temporary email addresses, receive emails with attachments, and protect your real mailbox from spam. ## Features - **Instant generation:** Get a temporary email address immediately upon loading. - **Custom address creation:** Create custom usernames with any of the available domains. - **Multi-domain support:** Multiple active domains to choose from. - **Attachments support:** View and download attachments directly in the browser. - **Privacy first:** All emails are deleted after a certain period of time, keeping no trace of your communication. - **AI Agent Friendly (WebMCP):** Exposes browser-native Model Context Protocol tools for AI assistants and LLMs to read messages programmatically. ## Main Navigation & URLs - [Home / Mailbox](https://linkf.su/) - The main temporary email application page. - [Blog](https://linkf.su/blog) - Read the latest articles and updates. - [Profile](https://linkf.su/profile) - View your profile and settings. ## AI Agent Integration (WebMCP) When visiting the mailbox page on `linkf.su`, AI agents can register and call three browser-native read-only WebMCP tools via `navigator.modelContext` to retrieve emails programmatically: 1. `getCurrentEmail` - **Description:** Get the currently generated active temporary email address. - **Input:** `{}` - **Returns:** `string` (e.g., `"john@linkf.su"`) 2. `getMessages` - **Description:** List all emails in the current temporary email inbox. - **Input:** `{}` - **Returns:** `Array<{id: number, sender_name: string, sender_email: string, subject: string, date: string, datediff: string}>` 3. `getMessageContent` - **Description:** Retrieve the full content details (including subject, body HTML, and attachments) of a specific email by message ID. - **Input:** `{ messageId: number }` - **Required fields:** `messageId` - **Returns:** `{id: number, sender_name: string, sender_email: string, subject: string, date: string, content: string, attachments: Array<{file: string, url: string}>}` --- Generated for LLMs and AI Agents. Host: linkf.su