Skip to main content
Glama
bizswoop-development

bizprint-mcp-server

BizPrint MCP 服务器

描述

一个将 AI 助手连接到 BizPrint 云打印 API 的 MCP(模型上下文协议)服务器。通过自然语言发送打印任务、管理打印机和工作站,并监控打印任务状态。

Related MCP server: OpenPrints MCP

功能

  • 列出并检查打印机、工作站和打印任务

  • 通过 URL 将文档发送到任何已配置的打印机

  • 实时监控打印任务状态

  • 支持大型打印机群的分页功能

  • 安全的 HMAC-SHA256 API 身份验证

  • 通过 Claude Desktop 扩展一键安装

工具

工具

描述

list_printers

列出所有已配置的打印机及其设置

get_printer

通过 ID 获取特定打印机的详细信息

list_stations

列出所有打印工作站及其状态

get_station

通过 ID 获取特定工作站的详细信息

create_print_job

将文档 URL 发送到打印机

get_print_job

检查打印任务的状态

list_print_jobs

列出所有打印任务(支持分页)

先决条件

  • 拥有 API 密钥的 BizPrint 云账户(开始使用

  • Node.js 18 或更高版本(桌面扩展安装无需此项)

安装

桌面扩展(推荐)

直接从 Claude Desktop 的 Anthropic 连接器目录安装:

  1. 打开 Claude Desktop

  2. 转到“设置” > “扩展”

  3. 搜索“BizPrint”并点击“安装”

  4. 在提示时输入您的 BizPrint API 密钥

您的 API 密钥将安全地存储在操作系统的钥匙串中。

或者,从 Releases 下载 .mcpb 文件并双击安装。

从源码安装

git clone https://github.com/bizswoop-development/bizprint-mcp-server.git
cd bizprint-mcp-server
npm install
npm run build

这将生成一个位于 build/index.js 的编译后服务器,您可以在 MCP 客户端配置中引用它。

配置

服务器需要两个环境变量,以及一个可选的覆盖项:

变量

必需

描述

BIZPRINT_PUBLIC_KEY

您的 BizPrint API 公钥

BIZPRINT_SECRET_KEY

您的 BizPrint API 密钥

BIZPRINT_API_URL

覆盖 API 基础 URL(默认:https://print.bizswoop.app/api/connect-application/v1

您可以在 BizPrint 仪表板 的应用程序设置下找到您的 API 密钥。

Claude Desktop(手动)

将以下内容添加到您的 Claude Desktop 配置文件中,并将路径调整为您克隆仓库的位置:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "bizprint": {
      "command": "node",
      "args": ["/absolute/path/to/bizprint-mcp-server/build/index.js"],
      "env": {
        "BIZPRINT_PUBLIC_KEY": "your-public-key",
        "BIZPRINT_SECRET_KEY": "your-secret-key"
      }
    }
  }
}

Claude Code

claude mcp add bizprint -- node /absolute/path/to/bizprint-mcp-server/build/index.js \
  --env BIZPRINT_PUBLIC_KEY=your-public-key \
  --env BIZPRINT_SECRET_KEY=your-secret-key

示例

示例 1:检查您的打印机设置

您: 我设置了哪些打印机?

Claude: 让我检查一下您的 BizPrint 打印机。

您配置了 2 台打印机:

  1. 前台激光打印机 (ID: 12) - 已启用,工作站 3,A4,彩色

  2. 仓库标签打印机 (ID: 15) - 已启用,工作站 3,4x6 标签,黑白

两台打印机都分配给了工作站 3(“办公室工作站”),目前在线。

示例 2:发送打印任务

您:https://example.com/invoices/1042.pdf 处的发票打印到前台打印机上。

Claude: 我已创建了一个打印任务:

任务已发送至 BizPrint,工作站获取后即可打印。

示例 3:监控打印任务状态

您: 向我展示最近的打印任务及其状态。

Claude: 以下是您最近的打印任务:

  1. 任务 287 - 已完成,打印机 12,“发票 #1042”

  2. 任务 286 - 已完成,打印机 15,“运输标签订单 #523”

  3. 任务 285 - 失败,打印机 12,“月度报告”

任务 285 失败。您可能需要检查打印机状态并重试。

您: 任务 287 的状态如何?

Claude: 任务 287 现已完成。它已在前台激光打印机上成功打印。

开发

npm install
npm test          # run tests
npm run build     # compile TypeScript
npm run pack:mcpb # build .mcpb desktop extension bundle

隐私政策

此扩展使用您的 API 凭据连接到 BizPrint 云打印 API (print.bizswoop.app)。它将打印机命令和文档 URL 传输到 BizPrint 的服务器以执行打印任务。除 API 密钥(存储在您的操作系统钥匙串中)外,不会在本地存储任何数据。有关完整的隐私信息,请参阅我们的隐私政策:https://getbizprint.com/privacy-policy/

数据处理

  • API 凭据存储在您操作系统的安全钥匙串中

  • 打印任务数据(文档 URL、打印机选择)发送到 BizPrint 云 API

  • 此扩展不会收集任何对话数据或个人信息

  • 除执行打印任务所需外,不会与第三方共享任何数据

支持

许可证

MIT

Install Server
A
license - permissive license
A
quality
D
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    Provides integration with Lulu Print API for print-on-demand services through Claude Desktop and other MCP clients, enabling users to create and manage print jobs, validate files, calculate costs, and handle shipping for books and printed materials.
    2
    12
    3
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables users to connect Claude with various 3D printer management systems, allowing tasks like printer status monitoring, file management, print job control, and STL file manipulation.
    103
    GPL 2.0
  • F
    license
    -
    quality
    D
    maintenance
    A cross-platform MCP server that enables AI assistants to manage printers, query printer status, and print files on Windows, macOS, and Linux.
    15

View all related MCP servers

Related MCP Connectors

  • Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.

  • Phone, SMS & email for AI agents — one remote MCP endpoint, OAuth login, zero install.

  • OCR, transcription, file extraction, and image generation for AI agents via MCP.

View all MCP Connectors

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/bizswoop-development/bizprint-mcp-server'

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