Skip to main content
Glama
krillto

Krill.to MCP Server

Official
by krillto

@krillto/mcp-server

MCP server for krill.to — search and manage your Twitter/X bookmarks from any AI agent.

Works with Claude Desktop, Claude Code, Cursor, Windsurf, OpenClaw, and any MCP-compatible client.

Quick Start

1. Get your API key

Sign in to krill.to, go to Settings → API Key, and generate a key.

2. Configure your MCP client

Claude Desktop — add to claude_desktop_config.json:

{
  "mcpServers": {
    "krill": {
      "command": "npx",
      "args": ["-y", "@krillto/mcp-server"],
      "env": {
        "KRILL_API_KEY": "krill_your_key_here"
      }
    }
  }
}

Cursor — add to .cursor/mcp.json:

{
  "mcpServers": {
    "krill": {
      "command": "npx",
      "args": ["-y", "@krillto/mcp-server"],
      "env": {
        "KRILL_API_KEY": "krill_your_key_here"
      }
    }
  }
}

Claude Code — add to .claude/settings.json:

{
  "mcpServers": {
    "krill": {
      "command": "npx",
      "args": ["-y", "@krillto/mcp-server"],
      "env": {
        "KRILL_API_KEY": "krill_your_key_here"
      }
    }
  }
}

That's it. Your AI agent can now search your bookmarks.

Related MCP server: mcp-bookmark-server

Tools

Tool

Description

search_bookmarks

Search by keyword, topic, or author (full-text + semantic)

ask_bookmarks

Ask AI questions about your saved bookmarks

list_collections

List all your collections

get_collection_bookmarks

View bookmarks in a collection

create_collection

Create a new collection

add_to_collection

Add a bookmark to a collection

update_bookmark

Update category or tags

add_notes

Add personal notes to a bookmark

get_highlights

View all your highlighted passages

delete_bookmark

Delete a bookmark

Examples

Ask your AI agent:

  • "Search my bookmarks about React Server Components"

  • "What have I saved about AI agents lately?"

  • "Create a collection called 'Must Read' and add the latest 3 bookmarks"

  • "Show me my highlights"

  • "What did @karpathy tweet about that I saved?"

What is krill.to?

Krill.to saves your Twitter/X bookmarks, auto-categorizes them with AI, and makes them searchable. Think of it as a second brain for everything you bookmark on X.

  • One-click save via Chrome extension

  • AI-powered categorization and tagging

  • Full-text and semantic search

  • Thread unrolling and media capture

  • AI chat — ask questions about your bookmarks

Development

git clone https://github.com/krillto/mcp-server.git
cd mcp-server
pnpm install
pnpm build

Test locally:

KRILL_API_KEY=krill_your_key node dist/index.js

Environment Variables

Variable

Required

Description

KRILL_API_KEY

Yes

Your krill.to API key (starts with krill_)

KRILL_BASE_URL

No

Custom API URL (default: https://krill.to)

License

MIT

Available Tools

10 tools
add_notesB

Add or update personal notes on a bookmark.

ParametersJSON Schema
NameRequiredDescriptionDefault
notesYesYour notes about this bookmark
bookmark_idYesThe bookmark/tweet ID

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 carries full burden for behavioral disclosure. 'Add or update' implies upsert behavior, but nothing is said about whether notes are overwritten, permissions required, or return values.

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?

One sentence that is direct and front-loaded. No wasted words.

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 tool is simple with only 2 parameters and no output schema. The description is adequate for a basic note operation, but lacks usage guidance and detail about overwrite behavior, making it minimally complete.

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?

Schema coverage is 100%, so the baseline is 3. The description does not add additional parameter meaning beyond what the schema already provides for bookmark_id and notes.

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 a specific action ('Add or update') and resource ('personal notes on a bookmark'). It distinguishes from siblings like update_bookmark by focusing on notes specifically.

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 such as update_bookmark. The description implies note-specific functionality but does not state when to choose it over other tools.

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

add_to_collectionC

Add a bookmark to a collection.

ParametersJSON Schema
NameRequiredDescriptionDefault
bookmark_idYesThe bookmark/tweet ID to add
collection_idYesThe collection ID

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full burden for behavioral disclosure. It only states the action without mentioning side effects, return values, permissions, or whether the operation is idempotent. This is minimal for a mutation tool.

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?

A single sentence, concise and front-loaded with the action. No wasted words, though it could benefit from one clause about behavior without losing efficiency.

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 two-parameter operation, the description is minimally adequate. However, it lacks any context about idempotency, errors, or expected outcomes, which would be useful for an agent to invoke and interpret results.

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?

Schema coverage is 100% with clear property descriptions ('The bookmark/tweet ID to add', 'The collection ID'). The description adds no new parameter-level meaning but confirms the relationship, which is adequate given the schema's clarity.

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 verb ('Add') and the resource ('bookmark to a collection'), which distinguishes it from sibling tools like delete_bookmark or create_collection. It is specific and unambiguous, though it doesn't explicitly differentiate from similar operations.

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 over alternatives. It does not mention scenarios, prerequisites, or exclusions, leaving the agent to infer usage from the action alone.

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

ask_bookmarksA

Ask a question about your bookmarks. Uses AI to find relevant saved tweets and answer based on them.

ParametersJSON Schema
NameRequiredDescriptionDefault
questionYesYour question about your saved bookmarks

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full transparency burden. It discloses that the tool uses AI and focuses on saved tweets, which is helpful, but it does not mention any side effects, limitations, or behavior when no relevant bookmarks are found. No contradiction exists, but more detail on the AI-driven behavior could be added.

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 two sentences long, front-loaded with the core action ('Ask a question about your bookmarks'), and contains no filler. Every word adds value, making it highly concise and well-structured.

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?

For a simple one-parameter tool with no output schema, the description adequately explains the purpose and mechanism. It covers the what and how, though it omits details about the response format or edge cases. This is acceptable given the low complexity.

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 input schema already documents the single 'question' parameter with 100% coverage, so the description adds no extra semantics beyond what the schema provides. The baseline of 3 applies because the schema fully clarifies the parameter.

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 tool's purpose: asking a question about bookmarks and using AI to answer based on relevant saved tweets. This distinguishes it from sibling tools like search_bookmarks, which presumably does keyword filtering rather than semantic Q&A.

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 description implies usage when a user has a natural-language question about their bookmarks, but it does not explicitly contrast with alternatives or state when not to use it. Since search_bookmarks is a sibling, a brief note distinguishing them would strengthen this dimension.

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

create_collectionB

Create a new bookmark collection.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesCollection name
descriptionNoCollection description

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the action without revealing behavioral traits like whether duplicate names are rejected, what happens on success/failure, or whether any side effects occur. This is a significant gap for a mutation tool.

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 five-word sentence, which is optimally concise and front-loaded. There is zero wasted text; however, it could be slightly more informative without losing conciseness.

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 tool is simple (2 params, no output schema), but the description omits return behavior and error handling. Given the simplicity, a one-line description is borderline; it is adequate but lacks closure on outcomes like what the created collection object looks like or how errors are reported.

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?

Schema documentation covers 100% of parameters, so the baseline is 3. The description adds no extra meaning about 'name' or 'description' beyond their existence, so it does not exceed the baseline.

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 uses the specific verb 'create' with the resource 'bookmark collection,' clearly distinguishing it from siblings like update_bookmark or delete_bookmark which target bookmarks, not collections. It is a precise verb+resource statement.

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 description implies the use case (when you need a new collection) but does not explicitly contrast with alternatives or state prerequisites. While no sibling tool creates collections, the intended usage is clear yet not explicitly articulated.

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

delete_bookmarkA

Delete a bookmark permanently.

ParametersJSON Schema
NameRequiredDescriptionDefault
bookmark_idYesThe bookmark/tweet ID to delete

TDQS

A4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. The word 'permanently' discloses irreversibility, which is valuable behavioral context. However, it does not mention side effects, authorization requirements, or failure behavior, leaving some transparency gaps.

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 a single concise sentence with no wasted words. It effectively communicates the core action and key qualifier (permanently) in a minimal, front-loaded format.

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?

For a simple one-parameter delete tool, the description and schema together provide adequate context: what is being deleted, the required parameter, and the irreversible nature. The lack of an output schema and detail on edge cases is acceptable given the tool's simplicity.

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 input schema already fully describes the single parameter with a clear description, achieving 100% coverage. The tool description adds no additional parameter-level detail, so the baseline score of 3 is appropriate.

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 uses a specific verb 'Delete' and a clear resource 'bookmark', with 'permanently' clarifying the irreversibility. This clearly distinguishes it from siblings like update_bookmark and get_highlights.

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 clear context that this is for permanently deleting a bookmark, making it obvious when to use it. It does not explicitly rule out alternatives, but no exclusions are needed given the tool's specific destructive purpose.

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

get_collection_bookmarksA

Get all bookmarks in a specific collection.

ParametersJSON Schema
NameRequiredDescriptionDefault
collection_idYesThe collection ID

TDQS

A3.6/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only states 'Get all bookmarks' and does not mention response format, pagination behavior, permissions, or error conditions. This is a read operation but lacks necessary details for an agent to fully anticipate the tool's 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 a single, concise sentence with no redundant or filler content. It efficiently conveys the core action and scope.

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 the tool's simplicity (one parameter, no annotations, no output schema), the description is mostly complete for an agent to invoke it. However, the lack of any hint about the return structure or potential caveats (e.g., pagination) leaves a small gap, but it is adequate for a straightforward getter.

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 input schema already describes collection_id as 'The collection ID' with 100% coverage. The tool description references 'a specific collection' but adds no extra meaning beyond the schema. The baseline of 3 applies because the schema fully documents the parameter.

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 'Get all bookmarks in a specific collection' uses a specific verb ('Get') and resource ('bookmarks') with a clear scope ('in a specific collection'). It clearly distinguishes from siblings like search_bookmarks (search) and get_highlights (highlights) by focusing on retrieving all bookmarks from a given collection.

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 description implies usage when you need all bookmarks from a particular collection, but provides no explicit guidance on when to prefer this over search_bookmarks or when not to use it. There are no exclusions or alternative tool mentions, leaving the usage context implicit rather than stated.

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

get_highlightsA

Get all your highlighted passages from bookmarks.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only states the core function and does not mention return format, pagination, or read-only nature. While the name implies a safe read, the description lacks explicit 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.

Conciseness5/5

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

The description is a single, direct sentence with no superfluous information. It is front-loaded and effective.

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 tool is simple and the description covers its primary purpose, but it lacks details about output structure and usage relative to sibling tools. Given zero parameters and no annotations, the description is adequate but not rich enough to fully guide an agent.

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 input schema has zero parameters, so schema coverage is trivially complete. No parameter description is needed, and the baseline for zero parameters is 4.

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 'Get all your highlighted passages from bookmarks' uses a specific verb and resource, clearly indicating the tool's function. It differentiates from siblings like search_bookmarks by focusing on highlights rather than search or collections.

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 such as search_bookmarks or get_collection_bookmarks. There are no exclusions or alternative recommendations, leaving the agent without contextual decision-making support.

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

list_collectionsA

List all your bookmark collections (like playlists for tweets).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It clearly implies a read-only listing operation and defines the scope ('all your bookmark collections'), which is transparent for a simple list tool. However, it does not describe return format, pagination, or other behavioral details, though these are less critical for a parameterless list operation.

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 a single, succinct sentence that fully conveys the purpose, enhanced by a helpful analogy. There is no redundancy, filler, or unnecessary detail.

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 the simplicity of the tool (0 parameters, no output schema, no annotations), the description is mostly complete. It explains what the tool does and its scope. It could optionally mention what a collection contains or point to related tools, but these are already implied by sibling names the agent receives. The lack of output schema slightly increases the burden, but the description's clarity compensates.

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 tool has zero parameters, and the schema covers 100% of them (vacuously). Per the rubric, 0 params gives a baseline of 4. The description does not need to explain parameters, and it appropriately focuses on the tool's purpose.

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 uses a specific verb 'List' with a clear resource 'bookmark collections' and provides an analogy ('like playlists for tweets') that makes the concept immediately understandable. It distinguishes from siblings like get_collection_bookmarks (which lists bookmarks within a collection) by clarifying this lists the collections themselves.

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 description implies usage for retrieving all bookmark collections but does not explicitly state when to use this tool versus alternatives. There is no mention of when not to use it or pointers to siblings such as get_collection_bookmarks or create_collection, so the guidance is only implicit.

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

search_bookmarksB

Search your saved Twitter/X bookmarks by keyword, topic, or author. Uses full-text and semantic search.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 20)
queryNoSearch query (keywords, author name, topic)
offsetNoPagination offset
categoryNoFilter by category

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. It mentions full-text and semantic search but omits key details like what results look like, default limits, pagination behavior, or any side effects. The schema provides some parameter details, but the description adds little 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.

Conciseness5/5

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

The description is exceptionally concise: two sentences that are front-loaded with the action and scope. There is no redundant or filler content.

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?

For a search tool with no output schema, the description should at least indicate what is returned and how pagination works. The tool has offset and limit parameters, but the description does not explain pagination or result format. Sibling differentiation is also missing. The description is under-specified for effective use.

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?

Schema description coverage is 100%, so baseline is 3. The description's mention of 'keyword, topic, or author' aligns with the query parameter but adds no new semantics beyond what the schema already states. No additional syntax or interaction details are provided.

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 tool's function: searching saved Twitter/X bookmarks by keyword, topic, or author. It uses a specific verb ('search') and a well-defined resource, distinguishing it from sibling tools like 'get_collection_bookmarks' or 'ask_bookmarks'.

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 description implies usage for general bookmark search but provides no explicit guidance on when to prefer this tool over alternatives like 'ask_bookmarks' or 'get_collection_bookmarks'. No exclusions or alternative recommendations are given.

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

update_bookmarkB

Update a bookmark's category or tags.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoNew tags
categoryNoNew category
bookmark_idYesThe bookmark/tweet ID

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations to rely on, the description must disclose behavioral traits. It only states 'update', but does not explain whether tags are replaced or appended, whether the bookmark must exist, or any authentication requirements. The phrase 'category or tags' may misleadingly suggest exclusivity, while the schema allows both.

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 a single sentence that immediately conveys the action and target. There is no extraneous detail, making it highly 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?

Given the simple nature of the tool and 100% schema description coverage, the description is minimally sufficient. However, it lacks behavioral context around the update semantics (merge vs replace) and no output schema exists. This is a modest gap, not a severe deficiency.

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?

Schema description coverage is 100% for all three parameters, each with clear descriptions ('New tags', 'New category', 'The bookmark/tweet ID'). The tool description only restates 'category or tags', adding no additional semantics about how to use the parameters (e.g., whether both can be supplied simultaneously). Baseline score of 3 is appropriate as the schema does the heavy lifting.

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 uses the verb 'update' with a clear resource ('bookmark') and specific fields ('category or tags'). This distinguishes it from sibling tools that delete, search, create collections, or add notes, making the purpose unambiguous.

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 no guidance on when to use this tool instead of alternatives like add_notes or delete_bookmark. There are no mentions of prerequisites, exclusionary scenarios, or appropriate use cases.

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. Dates show when Glama detected each change.

  1. 10 tool updatesv0.1.0
    • First observedadd_notes
    • First observedadd_to_collection
    • First observedask_bookmarks
    • First observedcreate_collection
    • First observeddelete_bookmark
    • First observedget_collection_bookmarks
    • First observedget_highlights
    • First observedlist_collections
    • First observedsearch_bookmarks
    • First observedupdate_bookmark

TDQS

A3.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: updating bookmarks, retrieving highlights, deleting bookmarks, searching, asking questions, managing collections, adding notes, and adding to collections. Even search_bookmarks and ask_bookmarks are clearly separated (one returns matches, the other provides an AI-generated answer). No two tools appear to overlap in function.

Naming Consistency4/5

The verb_noun pattern is consistent with lowercase and underscores, but there are minor deviations: some nouns are singular (update_bookmark, delete_bookmark) while others are plural (search_bookmarks, ask_bookmarks), and add_to_collection uses a prepositional phrase instead of a simple verb+noun. However, the overall style is uniform and predictable.

Tool Count5/5

The tool count of 10 is well within the typical 3-15 range and aligns with the server's purpose of managing Twitter/X bookmarks and collections. Each tool covers a distinct aspect of the domain without excessive redundancy or unnecessary additions.

Completeness3/5

The tool set covers core bookmark operations (update, delete, search, retrieve via collections) and collection basics (create, list, add). However, there are notable gaps: no way to delete or rename a collection, no way to remove a bookmark from a collection, and no direct method to fetch a single bookmark by ID. These missing operations limit full lifecycle management.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to interact with Twitter/X through Playwright browser automation without requiring an official API key. It provides tools for posting content, searching tweets, reading feeds, and managing social interactions like follows and likes.
    3
    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
    Not graded
    quality
    C
    maintenance
    Enables AI assistants to interact with X (Twitter) API v2 for posting tweets, searching, liking, retweeting, and more through natural language.
    MIT

Latest Blog Posts

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/krillto/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server