AgentHubAgentHub

duke-book

MCP ServerMCP Registry官方收录

io.github.gitHubDujianfeng/duke-book · v0.1.1

Manage Duke Bookmark notes, categories, and knowledge search from MCP clients.

概览

duke-book 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "duke-book": {
      "command": "npx",
      "args": [
        "-y",
        "duke-book"
      ],
      "env": {
        "DUKE_API_TOKEN": "<DUKE_API_TOKEN>"
      }
    }
  }
}

环境变量

DUKE_API_BASE_URL可选

Base URL of the Duke Bookmark service.

DUKE_API_TOKEN必填secret

Duke Bookmark API token used as the MCP user identity.

相关资源

统一 Manifest

{
  "id": "io.github.gitHubDujianfeng/duke-book",
  "type": "mcp-server",
  "version": "0.1.1",
  "displayName": "duke-book",
  "description": "Manage Duke Bookmark notes, categories, and knowledge search from MCP clients.",
  "repository": {
    "url": "https://github.com/gitHubDujianfeng/duke-book",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "duke-book",
        "version": "0.1.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "DUKE_API_BASE_URL",
            "description": "Base URL of the Duke Bookmark service."
          },
          {
            "name": "DUKE_API_TOKEN",
            "description": "Duke Bookmark API token used as the MCP user identity.",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.gitHubDujianfeng/duke-book",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.gitHubDujianfeng%2Fduke-book/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
duke-book — MCP Server 安装与配置 · AgentHub