A Bookmarking Tool for AI Agents: What Works Today
By Save This One · Published · Last updated
Prices and product details checked against the sources listed at the end of this page on 16 September 2026.
Save This One is a free bookmark manager with a documented HTTP API and token authentication. Any AI tool, agent, or automation that can make an HTTP request can save a link to it and read your saved links back. MCP support is not shipped yet, so there is no MCP setup guide on this page and no configuration to copy — publishing one before the server exists would waste your time.
Last checked: 16 September 2026. This page describes only what you can test today.
The problem worth solving
You are deep in a research session with an AI assistant. It surfaces a good article. You want to keep it. So you highlight the URL, switch tabs, open your bookmark manager, paste the link, add a tag, and switch back. The conversation has moved on by the time you return.
The reverse is worse. You ask an assistant to find "that article about React Server Components I saved last week" and it cannot, because it has no access to the links you saved. You search manually, copy the URL, and paste it back into the chat.
Both directions need the same thing: a bookmark store an agent can write to and read from. That requires an API, and increasingly it means MCP.
What works today
Save This One has a REST API with per-account token authentication. You create a token in the app under Settings, then call the API with it:
curl -X POST https://app.savethisone.com/api/bookmarks \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com/article", "tags": ["system-design"]}'
POST /api/bookmarkssaves a link, optionally with tags, and scrapes the page title and description.GET /api/bookmarkslists your saved links, with anarchived=trueoption.PATCH /api/bookmarksarchives or unarchives a link.DELETE /api/bookmarksremoves a link.
Anything that can send an HTTP request can use this: a script, a scheduled job, an automation platform, or an agent with a code-execution or HTTP tool. The terminal integration guide has the working commands, and the same token works from Raycast, Alfred, iOS Shortcuts, and the browser extension.
What this gives an agent today: the ability to save a link with tags, list what you have saved, and archive links you are done with. What it does not give an agent: semantic search over your library, or a standard plug-in that a desktop AI client can install in one click.
What does not work yet
MCP. The Model Context Protocol is the standard that lets desktop AI clients connect to outside tools, and Save This One does not implement it yet. When it ships, this page becomes a hub with a page per tested client, each carrying real setup steps, a tested configuration block, a capabilities table, a "last tested" date, and a link to the primary documentation. Until then, treat any claim that Save This One works with a specific AI client as unverified — including anything you may have read on this site before September 2026.
Semantic search. The API returns your saved links and their metadata. It does not search inside the pages you saved, and it does not do embeddings or meaning-based retrieval.
If MCP support today is a requirement rather than a nice-to-have, two honest alternatives: Raindrop.io runs a beta MCP server for Pro subscribers, and Karakeep is open source with AI tagging you can self-host. Both are more expensive or more work than Save This One, and both actually do the thing.
Why the API is still worth wiring up
The API is not a consolation prize. It covers the part of the loop that agents are worst at: persisting something the moment it is found. Two patterns that work now:
- Save from anywhere with a script. Wrap the
curlcall in a shell function or a shortcut, and any tool that can run a command can save a link — including an agent with a terminal. - Keep one library across every tool. The same account and the same token work from the browser extension, your phone, Raycast, and a script. An agent saving a link on Monday writes to the same library you search on Friday.
If you want the fuller version of this argument, our bookmarking tools comparison covers how the main tools differ on API access and automation.
Frequently asked questions
Does Save This One have MCP support?
Not yet. The API works today; MCP is not shipped. We are not publishing setup instructions for an integration that cannot be tested.
Can an AI agent save links to Save This One right now?
Yes, if the agent can make an HTTP request. Create an API token in Settings, then call POST /api/bookmarks with a bearer token. The terminal guide shows the exact command.
Can an agent read my saved bookmarks?
Yes, through GET /api/bookmarks with the same token. It returns your links with titles, descriptions, and tags.
Is the API free?
Yes. There is no paid tier and no usage limit.
Is my data private?
Your token belongs to your account and only reads and writes your own bookmarks. There is no shared index and no cross-account access.
Which AI tools will work when MCP ships?
Any client that supports MCP, which today includes Claude, ChatGPT, Cursor, Windsurf, and others. We will publish a page per client only after testing it against the shipped server.