# AIMemLink — your private memory for AI > Users write their context once and share it with AI tools through fetchable plain-text links. ## Private memory endpoint - URL pattern: https://aimemlink.com/{username}/{32-hex}.txt - Format: plain text (`text/plain; charset=utf-8`) - Auth: none — the URL itself is the credential (capability URL) - Method: HTTP GET - Use: Returns the user's full memory (public zone + private zone). - Note: Private URLs are unguessable and are not indexed (`X-Robots-Tag: noindex, nofollow`). ## Optional public memory endpoint - URL pattern: https://aimemlink.com/{username}/public-memory.txt - Format: plain text (`text/plain; charset=utf-8`) - Auth: none (public by username) - Method: HTTP GET - Use: Returns only the context the user intentionally placed in their public zone. Fetch this URL directly rather than web-searching the domain. ## Format documentation - https://aimemlink.com/docs/fetch-format - https://aimemlink.com/docs/private-links - https://aimemlink.com/docs/mcp ## MCP endpoint (optional, authenticated) - URL: https://aimemlink.com/api/mcp - Format: Model Context Protocol over HTTP POST (JSON) - Auth: `Authorization: Bearer aml_mcp_…` — dashboard API key (not OAuth) - Tools: `get_memory` (full memory), `append_private_memory` (private append) - Setup: https://aimemlink.com/docs/mcp ## Example - Private: https://aimemlink.com/{username}/{32-hex}.txt - Public: https://aimemlink.com/{username}/public-memory.txt ## Site - https://aimemlink.com