Piccolo123/url-manager-mcp
đ đ đ đ đĒ đ§ - Agent-first cross-platform bookmark & knowledge manager. AI agents collect web pages from any source (pairs naturally with Fetch, Firecrawl, Brave Search) and auto-categorize into organized collections with search, tags, and shared folders. 16 tools including agentregister (zero-config onboarding), addfootprint, searchfootprints, createsharedcategory. pip install -r requirements.txt && python server.py
Quick Install
{
"mcpServers": {
"piccolo123-url-manager-mcp": {
"command": "npx",
"args": [
"-y",
"piccolo123-url-manager-mcp"
]
}
}
}Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.
Documentation Overview
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.
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 |
|---|---|---|
id | UUID | Permanent unique identifier â use for all operations |
url | string (8192) | Original link. Can be empty for text-only footprints |
title | string (512) | Short title |
description | string (1024) | Additional context or notes |
content_type | string (50) | Free text (e.g. article, video, image). Use list_content_types() to see existing values |
category_ids | list[int] | Which categories this belongs to â you assign |
tag_names | 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 |
|---|---|---|
id | int | Permanent numeric identifier â always reference by ID |
name | string (50) | Display name |
mode | string | null | null = personal, "cocreate" = shared co-edit, "subscribe" = shared read-only |
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 | |
|---|---|---|
mode | null | "cocreate" or "subscribe" |
| 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 results
Create 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 everything - Discover before creating â call
list_categories()andlist_tags()before adding to avoid duplicates - Deliver 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 results
Agents 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.txt
Prerequisites
- 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 --http
Deployment
Docker
docker build -t url-manager-mcp .
docker run -e FOOTPRINTS_TOKEN="FA_xxx" url-manager-mcp
ModelScope
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