Skip to main content
Glama
Piccolo123

url-manager-mcp

by Piccolo123

URL Manager MCP Server

url-manager-mcp MCP server License: MIT

English | 简体中文

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

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 keywords

    • limit — Results per page (default 10, max 100)

    • offset — Pagination offset (default 0)

  • list_footprints(category_id, limit, offset) List bookmarks by category. category_id=0 returns 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) — From list_footprints or search_footprints results (field id)

  • add_footprint(url, title, description, category_ids, tag_names) Add a new bookmark. Call list_categories() and list_tags() first to discover existing structure.

    • url (required) — Web page URL

    • title — Leave empty to auto-extract from the page

    • description — Summary or notes

    • category_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_ids replaces the entire list — not append. Call get_footprint() first, then merge IDs.

    • footprint_id (required) — From search or list results

Categories & Tags

  • list_categories() List all categories (personal + shared). Returns id, name, and mode fields. mode=null → personal; mode="cocreate"/"subscribe" → shared.

  • create_category(name, category_set_id) Create a new category. Check list_categories() first to avoid duplicates.

    • name (required) — Category name

    • category_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 ⚠️ In subscribe mode, 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) — From list_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 contain title, description, category_ids, tag_names; id is 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_footprints for targeted queries instead of dumping everything

  • Discover before creating — call list_categories() and list_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)

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

Or from PyPI:

uvx url-manager-mcp   # or: pip install url-manager-mcp

Prerequisites

  • Python 3.10+

  • Network access to https://ai.ocean94.com

DeepSeek Harness (dsh)

Add to your profile's cordis.patch.yml (e.g. ~/.dsh/profiles/headless/cordis.patch.yml or the web profile):

- insert:
    - id: mcp-url-manager
      name: '@deepseek-ai/dsh-mcp-client'
      config:
        serverName: url_manager
        transport: stdio
        command: uvx
        args: ['url-manager-mcp']
        env:
          FOOTPRINTS_ENDPOINT: 'https://ai.ocean94.com'

All 21 tools appear as mcp__url_manager__* (add_footprint, search_footprints, list_categories, agent_magic_link, …). The model auto-registers on first use — no API key needed. The companion skill (Piccolo123/url-manager) is also auto-discovered by dsh when cloned into ~/.dsh/skills/.

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

Multi-user remote mode (WorkBuddy / hosted connectors)

Over Streamable HTTP (--http) for a multi-user platform such as the WorkBuddy connector, the server ignores FOOTPRINTS_TOKEN. Every request must carry the caller's own token in the Authorization header (Bearer FA_xxx); it is passed through to the URL Manager API for that user only, so concurrent users stay isolated. Requests without a token get a friendly missing_access_token error pointing the user to https://ai.ocean94.com → 个人中心 → 接入Agent → 访问令牌, and agent_register() is disabled in this mode (it would only create orphan accounts). Single-user STDIO deployments (python server.py, no --http) keep the original FOOTPRINTS_TOKEN / auto-register behaviour unchanged.

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

Available Tools

11 tools
add_to_shared_categoryA

Add one of your existing bookmarks to a shared category. The bookmark must be yours.

Args:
    shared_category_id: Shared category ID
    footprint_id: Bookmark ID
ParametersJSON Schema
NameRequiredDescriptionDefault
footprint_idYes
shared_category_idYes

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It states the core action and constraint but does not disclose potential side effects (e.g., whether adding an already present bookmark causes an error), required permissions, or rate limits. Adequate for a simple operation but not fully transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with only two lines of narrative plus the Args list. It front-loads the purpose and constraint. Every word adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the basic operation and constraint but lacks information on success/failure indicators, error handling, or idempotency. Since there is no output schema, more context on the result or error conditions would improve completeness for a simple tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The parameter names are minimally described in the schema. The description adds that footprint_id is a bookmark ID and shared_category_id is a shared category ID, but doesn't explain how to obtain these IDs or any validation rules. Given 0% schema coverage, more detail would be expected; this is adequate but not excellent.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Add' and the resource 'one of your existing bookmarks to a shared category'. It also specifies a key constraint: 'The bookmark must be yours'. This distinguishes it from sibling tools like create_shared_category or join_shared_category.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a prerequisite ('The bookmark must be yours'), but does not explicitly explain when to use this tool versus alternatives or when not to use it. The context of sibling tools implies the usage, but explicit guidance would be beneficial.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

batch_update_footprintsA

Batch update bookmarks — max 50 at a time. For bulk reorganization.

Args:
    updates: JSON string, format '[{"id":"uuid","title":"New Title","category_ids":"1,3"}, ...]'
             Each object may contain title/description/category_ids/tag_names; "id" is required
ParametersJSON Schema
NameRequiredDescriptionDefault
updatesYes

TDQS

A4.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses the batch size limit and the required 'id' field. However, it does not mention error handling, partial success, idempotency, or authentication, which are important for a batch mutation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise: a single sentence summarizing purpose and constraints, followed by clear parameter details. No wasted words, and the key information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has one parameter and no output schema. The description thoroughly explains the input format. However, it lacks information about return values (e.g., success/failure counts) and error behavior, which would be helpful for a batch operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% (no parameter descriptions). The description fully compensates by detailing the JSON format, required field ('id'), and optional fields (title, description, category_ids, tag_names). This adds substantial meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Batch update bookmarks' with constraints 'max 50 at a time' and 'For bulk reorganization.' This distinguishes it from sibling tools like copy_footprint (single copy) or create_category (creation).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description says 'For bulk reorganization,' implying when to use. It also sets a batch limit of 50. However, it does not explicitly exclude single updates or mention alternatives, though sibling tool names provide context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

copy_footprintC

Copy a bookmark from a shared category into your own personal category.

Args:
    footprint_id: Bookmark ID to copy
    category_ids: Target category IDs, comma-separated, e.g. "1,3"
ParametersJSON Schema
NameRequiredDescriptionDefault
category_idsYes
footprint_idYes

TDQS

C2.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must bear full burden. It states the action 'Copy' but lacks details on permissions, whether the original is retained, or side effects. Minimal behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short but includes a somewhat redundant Args block that repeats schema information. Could be more concise by integrating parameter info into the main description.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema exists, yet the description does not mention return values or error conditions. For a mutation tool, this leaves the agent guessing about outcomes.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, and the Args section merely repeats parameter names with one-word descriptions (e.g., 'Bookmark ID to copy'). Does not add meaningful constraints or format beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action 'Copy' and the resource 'bookmark' from a shared category to a personal category, providing a specific verb and resource. However, it does not explicitly differentiate from sibling tools like add_to_shared_category.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. No prerequisites, exclusions, or context about when copying is appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_categoryA

Create a new category. Call list_categories() first to avoid duplicates.

Args:
    name: Category name
    category_set_id: Parent category set (0=default)
ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
category_set_idNo

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description bears full responsibility for behavioral disclosure. It only states it creates a category, lacking information about side effects, permissions, idempotency, or error behavior (e.g., duplicate handling). The agent is left unaware of critical behavioral traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Extremely concise with two sentences and a brief Args list. The primary action is stated first, with no unnecessary words. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given simple parameters and no output schema, the description covers the creation action and parameter meanings but omits return value or error handling. It is adequate but not fully complete for an agent to anticipate the response.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description includes an Args section that adds meaning beyond the schema's titles, explaining 'name' as category name and 'category_set_id' as parent category set with default 0. This compensates for the 0% schema description coverage, though it could provide more detail like constraints or allowed values.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states 'Create a new category' with a specific verb and resource. Distinguishes from siblings like 'create_category_set' which creates a set, not a single category. The mention of calling list_categories first further clarifies its purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides a precondition (call list_categories to avoid duplicates) but does not explicitly state when to use this tool versus alternatives like 'create_shared_category' or 'join_shared_category'. The guidance is implied but not complete.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_category_setB

Create a new category set (a container of categories).

Args:
    name: Category set name
ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description bears full burden but only states the basic creation action, omitting side effects, permissions, idempotency, or constraints like name uniqueness.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise with no wasted words, but its brevity may under-specify details; still appropriate for a simple tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given low complexity (1 required param, no output schema, no annotations), the description provides a minimal but adequate high-level overview; lacks details on response or error behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, and the description merely restates the parameter name with a generic label ('Category set name'), adding no format, uniqueness, or length constraints beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action 'Create a new category set' and explains the resource as 'a container of categories', distinguishing it from sibling tools like 'create_category' and 'list_category_sets'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use or alternatives is provided; the context is implied but lacks exclusions or comparison with similar tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create_shared_categoryA

Create a shared category. "cocreate" = multiple editors, "subscribe" = read-only.

⚠️ In subscribe mode, NO ONE (including the creator) can add bookmarks —
add_to_shared_category returns 403. Use mode="cocreate" if collaboration is needed.
ParametersJSON Schema
NameRequiredDescriptionDefault
modeNococreate
nameYes
descriptionNo

TDQS

A3.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description warns about subscribe mode preventing bookmark addition and suggests using cocreate for collaboration. It explains key behavioral differences between modes. However, it does not detail permissions or return behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise, with a clear front-loaded purpose and only essential details. No fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description covers the critical behavioral constraint but does not mention return values or constraints like name uniqueness. It feels slightly incomplete for a creation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description adds meaning to the 'mode' parameter by explaining cocreate and subscribe, but does not describe 'name' or 'description' parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Create a shared category' which matches the tool name. However, it does not explicitly differentiate from sibling 'create_category' for non-shared categories, but the context implies shared.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides guidance on modes within the tool (cocreate vs subscribe) but lacks guidance on when to choose this tool over alternative tools like create_category or others.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

join_shared_categoryA

Join a shared category by invite code.

Args:
    invite_code: 8-character invite code
ParametersJSON Schema
NameRequiredDescriptionDefault
invite_codeYes

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided; description only states the action without explaining effects (e.g., membership, permissions). Fails to disclose behavioral traits beyond the bare action.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Extremely concise with no filler. Single sentence plus args. Slightly minimal for full clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Simple tool with 1 param; description covers the core action but lacks details on join semantics (e.g., returns status, side effects). Adequate but not thorough.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, but description adds '8-character invite code' format hint, giving meaning beyond the schema's string type. Single parameter well-specified.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear verb 'Join' with resource 'shared category' and method 'by invite code'. Distinguishes from siblings like create_shared_category and create_invite_link.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implied usage when invite code is available, but no explicit when-not-to-use or alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_category_setsB

List all category sets. Rarely needed.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must fully disclose behavior, but it only states the basic function without mentioning side effects, permissions, or return format.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler words; perfectly concise and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple parameterless tool with no output schema or annotations, the description is adequate but could explain what a category set is or what the output contains.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters are defined, so schema coverage is 100%. With zero params, the description need not add param info, earning the default baseline of 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The verb 'list' and resource 'category sets' clearly state the action, but there is no differentiation from sibling tools like list_tags; however, the purpose is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'Rarely needed' implies low usage frequency but does not specify when to use vs alternatives or provide explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_tagsA

List all tags used by this user.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must cover behavioral traits. It implies a read-only list operation but does not explicitly state safety, side-effects, or authentication requirements. The simplicity of the tool partially compensates.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence with no wasted words. It could perhaps add more context without being verbose, but it is appropriately concise for a trivial tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no parameters, no output schema, and a simple list operation, the description is nearly complete. It could mention pagination or return format, but the tool's simplicity makes this acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters, so the description does not need to add meaning beyond the schema. Baseline 4 is appropriate as the schema coverage is 100% and no parameter info is missing.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('List'), the resource ('all tags'), and the scope ('used by this user'). It is specific and distinguishes from sibling tools, none of which mention tags.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. There is no mention of prerequisites, exclusions, or context in which it should be preferred.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 11 tool updatesv0.1.0
    • First observedadd_to_shared_category
    • First observedagent_magic_link
    • First observedbatch_update_footprints
    • First observedcopy_footprint
    • First observedcreate_category
    • First observedcreate_category_set
    • First observedcreate_invite_link
    • First observedcreate_shared_category
    • First observedjoin_shared_category
    • First observedlist_category_sets
    • First observedlist_tags

TDQS

B3.3/5.0

Scored across 11 tools

Disambiguation4/5

Most tools target clearly distinct actions such as creating categories, joining shared categories, copying bookmarks, or batch updating them. The main ambiguity is the trio of create_category_set, create_shared_category, and create_category, but their descriptions clarify the differences enough for an agent to choose correctly.

Naming Consistency4/5

Tool names mostly follow a consistent verb_noun pattern: create_, list_, join_, add_, copy_, batch_update_. The outliers are agent_magic_link, which is a noun phrase rather than a verb action, and the mixed use of 'footprint' in names versus 'bookmark' in descriptions.

Tool Count4/5

Eleven tools is a reasonable count for a bookmark and sharing manager, and no two tools are exact duplicates. The set is slightly unbalanced because several tools center on sharing and invites while core bookmark management operations are missing, but the raw count itself is appropriate.

Completeness2/5

There are significant gaps: no tool for listing, creating, or deleting a user's own bookmarks/footprints, and list_categories is referenced in descriptions but not exposed as a tool. copy_footprint and batch_update_footprints assume bookmarks already exist, so agents would struggle to complete basic URL-management workflows.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables 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.
    44 npm
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Bookmark manager for AI agents with tags, categories, and full-text search. Reads are free, writes require Veyra commit mode.
    4 npm
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to save and search bookmarks using OpenAI's RAG capabilities for intelligent bookmark management and retrieval.
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to save, search, and manage bookmarks with semantic search, automatic metadata extraction, and optional LLM-powered enrichment, all running locally.
    8
    6
    MIT