url-manager-mcp
The URL Manager MCP server provides comprehensive tools for AI agents to manage, organize, and share web bookmarks with zero manual setup.
Account Management
agent_register()— Automatically create a new account (no params needed)my_info()— Verify connection and retrieve user identity/membership status
Bookmark Operations
add_footprint(url, ...)— Save a bookmark with optional title, description, categories, and tagsget_footprint(id)— Retrieve full details of a single bookmarklist_footprints(category_id)— Browse bookmarks, optionally filtered by categorysearch_footprints(query)— Full-text search across titles, descriptions, and URLsupdate_footprint(id, ...)— Edit a bookmark's title, description, categories, or tagsbatch_update_footprints(updates)— Bulk-edit up to 50 bookmarks at oncecopy_footprint(id, category_ids)— Copy a shared bookmark into your personal categories
Category & Tag Management
list_categories()— List all personal and shared categoriescreate_category(name)— Create a new personal categorylist_tags()— List all existing tags to avoid duplicateslist_category_sets()/create_category_set(name)— Manage category set containers
Collaborative Sharing
create_shared_category(name, mode)— Create a shared category incocreate(editable) orsubscribe(read-only) modecreate_invite_link(shared_category_id)— Generate a shareable invite link for collaboratorsjoin_shared_category(invite_code)— Join a shared category via an invite codeadd_to_shared_category(sc_id, footprint_id)— Add a bookmark to a shared categoryremove_from_shared_category(sc_id, footprint_id)— Remove a bookmark from a shared category
Delivery
agent_magic_link()— Generate a 30-day reusable magic link so users can view their bookmarks in a card-based web interface
Allows to search the web via Brave Search and directly add search results to the URL Manager collection using add_footprint.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@url-manager-mcp收藏这个链接 https://example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
URL Manager MCP Server
Deliver results as beautiful cards, not raw link dumps. A Model Context Protocol server for saving, organizing, searching, and sharing web resources — cross-device sync, categories, tags, full-text search, batch operations, and team sharing. 21 tools with auto-registration so no manual setup is required.
📖 Usage patterns and best practices → URL Manager Skill
What This Tool Gives Humans
The content human users want to save is everywhere — a YouTube workout video, an Amazon gear link, a Substack training plan — scattered across platforms with no connection.
URL Manager fixes this. Paste any link from any platform. AI auto-identifies the content and suggests a category — confirm and it's a footprint. All saves flow into one platform-agnostic library, organized and always findable. Then share in one click — hand your curated knowledge base to your team, and everyone stays in sync.
Related MCP server: veyra-bookmarks
System Concepts
Footprint (the fundamental unit)
A structured, searchable record — a web link, a plain-text note, an idea, or anything worth saving.
Field | Type | Description |
| UUID | Permanent unique identifier — use for all operations |
| string (8192) | Original link. Can be empty for text-only footprints |
| string (512) | Short title |
| string (1024) | Additional context or notes |
| string (50) | Free text (e.g. |
| list[int] | Which categories this belongs to — you assign |
| list[str] | Free-form keywords — you assign |
A footprint can belong to multiple categories simultaneously.
Category (a named label)
Like a folder, but a footprint can be in several at once.
Field | Type | Description |
| int | Permanent numeric identifier — always reference by ID |
| string (50) | Display name |
| string | null |
|
Category Set (a workspace)
A container that groups related categories. Every user starts with "My Categories" (personal) and "Shared Categories" (shared container).
Data hierarchy
Category Sets (workspaces)
└── Categories (labels like "Shopping", "Learning")
└── Footprints
└── Tags (free-form keywords)Personal vs Shared
Personal | Shared | |
|
|
|
Visible to | Only you | You + invited members |
Members & invite links | No | Yes |
Cocreate — everyone adds/removes footprints. Subscribe — read-only for members (writing returns 403).
Action | Owner | Admin | Member |
Add/remove footprints (cocreate) | ✅ | ✅ | ✅ |
Add/remove footprints (subscribe) | ✅ | ❌ | ❌ |
Generate invite link (cocreate) | ✅ | ✅ | ✅ |
Generate invite link (subscribe) | ✅ | ❌ | ❌ |
Switch cocreate ↔ subscribe | ✅ | ❌ | ❌ |
Manage members | Web UI only | — | — |
Tools
Registration & Identity
agent_register()Create a new account. No parameters. Token is auto-applied for all subsequent calls. ⚠️ Call once only — each invocation creates a fresh account.my_info()Verify connection and token validity. Returns username and membership status.
Bookmarks
search_footprints(query, limit, offset)Full-text search across titles, descriptions, and URLs.query(required) — Search keywordslimit— Results per page (default 10, max 100)offset— Pagination offset (default 0)
list_footprints(category_id, limit, offset)List bookmarks by category.category_id=0returns all.limit— Results per page (default 20, max 100)offset— Pagination offset (default 0)
get_footprint(footprint_id)Get full details of a single bookmark.footprint_id(required) — Fromlist_footprintsorsearch_footprintsresults (fieldid)
add_footprint(url, title, description, category_ids, tag_names)Add a new bookmark. Calllist_categories()andlist_tags()first to discover existing structure.url(required) — Web page URLtitle— Leave empty to auto-extract from the pagedescription— Summary or notescategory_ids— Comma-separated IDs, e.g."1,3"tag_names— Comma-separated names, e.g."AI,tutorial"
update_footprint(footprint_id, title, description, category_ids, tag_names)Update a bookmark. Omitted fields stay unchanged. ⚠️category_idsreplaces the entire list — not append. Callget_footprint()first, then merge IDs.footprint_id(required) — From search or list results
Categories & Tags
list_categories()List all categories (personal + shared). Returnsid,name, andmodefields.mode=null→ personal;mode="cocreate"/"subscribe"→ shared.create_category(name, category_set_id)Create a new category. Checklist_categories()first to avoid duplicates.name(required) — Category namecategory_set_id— Parent category set (0 = default)
list_tags()List all tags used by this account.list_content_types()List all content types the user has used (e.g. article, video, image), ordered most-used first. Use before adding to pick a consistent content_type.
Category Sets
list_category_sets()List all category sets.create_category_set(name)Create a new category set (a container of categories).name(required) — Category set name
Shared Categories
create_shared_category(name, mode, description)Create a shared category for team collaboration.name(required)mode(required) —"cocreate"(multiple editors) or"subscribe"(read-only)description— Optional description ⚠️ Insubscribemode, adding bookmarks returns 403. Use"cocreate"for editable collaboration.
create_invite_link(shared_category_id, duration_hours)Generate an invite link for others to join.shared_category_id(required) — Fromlist_categories()(shared entries)duration_hours— Default 24
join_shared_category(invite_code)Join a shared category by invite code.invite_code(required) — 8-character code from the invite link
add_to_shared_category(shared_category_id, footprint_id)Add one of your own bookmarks to a shared category.Both parameters required
remove_from_shared_category(shared_category_id, footprint_id)Remove a bookmark from a shared category. Does not delete the bookmark itself.Both parameters required
copy_footprint(footprint_id, category_ids)Copy a bookmark from a shared category into your personal collection.Both parameters required
Batch & Delivery
batch_update_footprints(updates)Bulk edit up to 50 bookmarks at once.updates(required) — JSON string:[{"id":"...", "title":"New Title", "category_ids":"1,3"}, ...]Each object may containtitle,description,category_ids,tag_names;idis required.
agent_magic_link()🔑 The delivery loop core. After organizing, generate a link → send to user. They click to see a card-based interface with all their organized bookmarks. Valid for 30 days, reusable.
Workflows
New User — Zero Setup
1. agent_register() → get token (auto-memorized)
2. add_footprint(url="...") × N → save bookmarks one by one
3. list_categories() → understand current structure
4. create_category(name="Learning") → create a category
5. update_footprint(id, category_ids="...") → categorize
6. agent_magic_link() → "Done! View your collection here → [link]"Returning User — Daily Use
1. my_info() → confirm identity
2. list_categories() + list_tags() → understand current structure
3. search_footprints(query) or list_footprints(category_id) → find targets
4. add_footprint / update_footprint → operate
5. agent_magic_link() → deliver resultsCreate Shared Category
1. create_shared_category(name="Team KB", mode="cocreate")
2. create_invite_link(shared_category_id=<returned ID>)
3. Send invite code to user → user shares with teammates
4. Teammates' agents join via join_shared_category(invite_code)⚠️ Critical Pitfalls
category_ids REPLACES, not appends
# ❌ Wrong: moving bookmark 42 to category 7 loses existing categories 3 and 5
update_footprint(42, category_ids="7")
# ✅ Right: fetch current categories first, then merge
get_footprint(42) → existing categories [3, 5]
update_footprint(42, category_ids="3,5,7")Subscribe mode is READ-ONLY
Writing to a subscribe-mode shared category returns 403. If the user says "I subscribed but can't add anything", explain it's read-only — the creator needs to change it to cocreate.
NEVER call agent_register twice
Each call creates a fresh empty account. Always check for a saved token first. If unsure, call my_info() to verify the current token is valid.
Rate Limiting
Rapid consecutive calls may trigger HTTP 429. Add short delays between batch operations; on 429, wait a few seconds and retry.
No member management via API
Inviting or removing members from shared categories requires the web UI at https://ai.ocean94.com. You cannot do this programmatically.
Guidelines
Always
Auto-register silently — never interrupt the user for account setup
Search before listing — use
search_footprintsfor targeted queries instead of dumping everythingDiscover before creating — call
list_categories()andlist_tags()before adding to avoid duplicatesDeliver with magic link — after organizing, always generate and share a link
Confirm before
Removing bookmark-category associations (irreversible)
Clearing tags
Modifying cocreate shared categories (affects others)
Removing bookmarks from shared categories (other members lose access)
Pairing with Popular MCP Servers
URL Manager excels at saving and organizing. Pair it with tools that excel at discovering and fetching:
Fetch MCP scrapes web → add_footprint() → auto-categorized, permanent, searchable
Firecrawl crawls pages → add_footprint() → organized into cards
Brave Search finds URLs → add_footprint() → one-click save from search resultsAgents just pass the upstream MCP's URL + title as params to add_footprint.
Installation
git clone https://github.com/Piccolo123/url-manager-mcp.git
cd url-manager-mcp
pip install -r requirements.txtPrerequisites
Python 3.10+
Network access to
https://ai.ocean94.com
Configuration
Claude Desktop / Claude Code
{
"mcpServers": {
"url-manager": {
"command": "python",
"args": ["path/to/url-manager-mcp/server.py"]
}
}
}If the user has an existing account:
{
"mcpServers": {
"url-manager": {
"command": "python",
"args": ["path/to/url-manager-mcp/server.py"],
"env": {
"FOOTPRINTS_TOKEN": "FA_xxxxxxxxxxxx"
}
}
}
}Cursor / Windsurf / Cherry Studio
Same JSON structure as above. Works with any MCP-compatible client supporting STDIO transport.
Other Clients
This server supports both STDIO (default) and Streamable HTTP transports:
# STDIO (default)
python server.py
# Streamable HTTP (for Docker / Glama / hosted environments)
python server.py --httpDeployment
Docker
docker build -t url-manager-mcp .
docker run -e FOOTPRINTS_TOKEN="FA_xxx" url-manager-mcpModelScope
One-click hosted deployment: url-manager-mcp
Why URL Manager
Browser bookmarks are flat lists with no organization, no search, and no sharing. URL Manager adds:
Categories, category sets, and tags — Hierarchical organization
Full-text search — Find anything across all titles, descriptions, and URLs
Cross-device sync — Save on one device, access on all
Batch management — Sort and organize hundreds of links at once
Team sharing — Co-editing and read-only shared collections with invite links
Card-based delivery — Send organized collections as a polished interface, not raw URLs
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables AI agents to access and manage Raindrop.io bookmarks, collections, tags, and highlights through the Model Context Protocol. Supports CRUD operations, advanced search, file uploads, and bulk editing of bookmarks.81MIT
- Alicense-qualityDmaintenanceBookmark manager for AI agents with tags, categories, and full-text search. Reads are free, writes require Veyra commit mode.7MIT
- Alicense-qualityDmaintenanceEnables AI assistants to save and search bookmarks using OpenAI's RAG capabilities for intelligent bookmark management and retrieval.MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to save, search, and manage bookmarks with semantic search, automatic metadata extraction, and optional LLM-powered enrichment, all running locally.86MIT
Related MCP Connectors
Universal memory for AI agents and tools. Save, organize and search context anywhere.
Persistent docs and memory for AI agents — read, write, organize & search a shared workspace.
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Piccolo123/url-manager-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server