Skip to main content
Glama
Aquariosan

veyra-bookmarks

by Aquariosan

veyra-bookmarks

一个面向 AI 智能体的书签和链接管理器 MCP 工具,支持标签过滤、分类和全文搜索。读取操作始终免费。写入操作需要 Veyra 提交模式授权。

概述

veyra-bookmarks 为 AI 智能体提供了一个由 SQLite 支持的持久化链接库。智能体可以自由浏览和搜索书签。保存、更新和删除操作需要 Veyra 提交模式。

Related MCP server: mcp-bookmark-server

安装

npm install
npm run build

数据存储在 ~/.veyra-bookmarks/data.db 中,首次运行时会自动创建。

MCP 配置 (Claude Desktop)

{
  "mcpServers": {
    "veyra-bookmarks": {
      "command": "node",
      "args": ["/absolute/path/to/veyra-bookmarks/dist/index.js"]
    }
  }
}

工具

工具

输入

价格

list_bookmarks

{ tag?, category? }

免费

get_bookmark

{ id }

免费

search_bookmarks

{ query }

免费

save_bookmark

{ url, title?, tags?, category?, veyra_token? }

A

€0.005

update_bookmark

{ id, tags?, category?, veyra_token? }

A

€0.005

delete_bookmark

{ id, veyra_token? }

B

€0.02

示例

读取(无需令牌)

// List all bookmarks
{ "tool": "list_bookmarks", "arguments": {} }

// Filter by category
{ "tool": "list_bookmarks", "arguments": { "category": "research" } }

// Search by keyword
{ "tool": "search_bookmarks", "arguments": { "query": "typescript" } }

写入(需要 Veyra 令牌)

// Save a bookmark
{
  "tool": "save_bookmark",
  "arguments": {
    "url": "https://www.typescriptlang.org/docs/",
    "title": "TypeScript Docs",
    "tags": "typescript,docs,reference",
    "category": "development",
    "veyra_token": "vt_..."
  }
}

// Update tags/category
{
  "tool": "update_bookmark",
  "arguments": {
    "id": "1712345678-abc1234",
    "tags": "typescript,docs,pinned",
    "veyra_token": "vt_..."
  }
}

// Delete
{
  "tool": "delete_bookmark",
  "arguments": { "id": "1712345678-abc1234", "veyra_token": "vt_..." }
}

令牌缺失时的错误响应

{
  "error": "VeyraCommitRequired",
  "message": "Write operations require Veyra commit mode.",
  "currentMode": "open",
  "requiredMode": "commit",
  "authorize_endpoint": "https://api.veyra.to/v1/authorize-action",
  "docs_url": "https://veyra.to"
}

Veyra 的工作原理

Veyra 是 AI 智能体的提交模式授权层。当智能体尝试写入时:

  1. 智能体在不带 veyra_token 的情况下调用工具 → 收到包含 authorize_endpointVeyraCommitRequired 响应。

  2. 智能体/用户调用授权端点以获取令牌。

  3. 智能体使用设置好的 veyra_token 重试。

  4. veyra-bookmarks 在执行操作前通过 @veyrahq/sdk-node 验证令牌。

完整文档请参阅 veyra.to

许可证

MIT

托管包(推荐)

建议使用托管包以实现单 URL 集成:

{
  "mcpServers": {
    "veyra": {
      "url": "https://mcp.veyra.to/sse"
    }
  }
}

一个 URL。48 个工具。24 个免费读取。24 个受保护的写入。

托管包: https://mcp.veyra.to/sse

包清单: https://mcp.veyra.to/.well-known/veyra-pack.json

当您希望在所有 Veyra 工具系列中获得最快的 MCP 集成路径时,请使用托管包。 当您特别需要单独使用此工具时,请使用此独立包。

Veyra 生态系统的一部分

Veyra 是用于生产环境 AI 智能体操作的提交模式。 所有工具:读取免费,写入需要 Veyra 提交模式。

工具

描述

安装

veyra-memory

键值内存存储

npm i -g veyra-memory

veyra-notes

带标签的笔记记录

npm i -g veyra-notes

veyra-tasks

任务管理

npm i -g veyra-tasks

veyra-snippets

代码片段存储

npm i -g veyra-snippets

veyra-contacts

联系人管理

npm i -g veyra-contacts

veyra-forms

表单构建器

npm i -g veyra-forms

veyra-webhooks

Webhook 发送器

npm i -g veyra-webhooks

SDK: npm install @veyrahq/sdk-node 网站: veyra.to

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityInactive
ResponsivenessNo issues

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 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
  • A
    license
    B
    quality
    D
    maintenance
    Enables AI assistants to save and search bookmarks with semantic search using OpenAI, allowing storage of URLs with metadata and intelligent retrieval across collections.
    2
    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/Aquariosan/veyra-bookmarks'

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