Skip to main content
Glama

Gyazo MCP Server

by nota

gyazo-mcp-服务器

用于 Gyazo 图像集成的模型上下文协议服务器

这是一个基于 TypeScript 的 MCP 服务器,提供对 Gyazo 图像的访问。它允许 AI 助手通过模型上下文协议 (MCP) 访问 Gyazo 图像并与之交互,从而提供:

  • 使用 URI 和元数据表示 Gyazo 图像的资源
  • 搜索、获取和上传图像的工具
  • 通过 Gyazo API 访问图像内容和元数据

特征

资源

  • 通过gyazo-mcp:// URI 列出并访问 Gyazo 图像
  • 每张图片包括:
    • 原始图像内容
    • 元数据(标题、描述、应用程序、URL)
    • OCR 数据(如果有)
  • 支持各种图像格式(JPEG、PNG等)

工具

  • gyazo_search - 在 Gyazo 上对用户上传的捕获内容进行全文搜索
    • 按关键字、标题、应用程序、URL 或日期范围搜索
    • 支持分页浏览多个结果
    • 返回匹配的图像 URI 和元数据
  • gyazo_image - 从 Gyazo 获取图像内容和元数据
    • 通过 ID 或 URL 检索特定图像
    • 返回图像内容和详细元数据
  • gyazo_latest_image - 从 Gyazo 获取最新的图像
    • 返回图像内容和元数据
    • 包含 OCR 文本(如果可用)
  • gyazo_upload - 将图像上传到 Gyazo
    • 上传带有 base64 编码图像数据的图像
    • 添加可选元数据,如标题、描述、引荐来源网址和应用程序名称
    • 返回已上传图片的永久链接 URL 和 ID

安装

NPM 包

安装 Gyazo MCP 服务器最简单的方法是通过 npm:

npm install -g @notainc/gyazo-mcp-server

先决条件

  • 如果您没有 Gyazo 帐户,请创建一个: https://gyazo.com
  • 从以下位置获取您的 Gyazo API 访问令牌: https://gyazo.com/api
    • 点击“注册应用程序”按钮
    • 点击“新申请”按钮
    • 在表单中填写您的应用名称和描述
      • 名称和回调 URL 为必填项
      • 您可以使用http://localhost作为回调 URL
    • 点击“提交”按钮
    • 点击应用名称查看详情
    • 向下滚动到“您的访问令牌”
    • 点击“生成”按钮
    • 复制“您的访问令牌”值
  • 使用您的令牌设置GYAZO_ACCESS_TOKEN环境变量

Claude 桌面集成

要与 Claude Desktop 一起使用,请添加服务器配置:

在 MacOS 上: ~/Library/Application Support/Claude/claude_desktop_config.json在 Windows 上: %APPDATA%/Claude/claude_desktop_config.json

使用 NPM 包(推荐)
{ "mcpServers": { "gyazo-mcp-server": { "command": "npx", "args": ["@notainc/gyazo-mcp-server"], "env": { "GYAZO_ACCESS_TOKEN": "your-access-token-here" } } } }
使用 Docker(可选)
{ "mcpServers": { "gyazo-mcp-server": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "GYAZO_ACCESS_TOKEN", "gyazo-mcp-server" ], "env": { "GYAZO_ACCESS_TOKEN": "your-access-token-here" } } } }

发展

安装依赖项:

npm ci

构建服务器:

npm run build

对于使用自动重建的开发:

npm run watch

Docker Build(可选)

npm run image:build

-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

基于 TypeScript 的 MCP 服务器,使 AI 助手能够使用模型上下文协议与 Gyazo 图像进行交互,并通过 Gyazo API 提供对图像 URI、元数据和 OCR 数据的访问。

  1. 特征
    1. 资源
    2. 工具
  2. 安装
    1. NPM 包
    2. 先决条件
    3. Claude 桌面集成
  3. 发展
    1. Docker Build(可选)

Related MCP Servers

  • -
    security
    F
    license
    -
    quality
    A MCP server that allows AI assistants to interact with the browser, including getting page content as markdown, modifying page styles, and searching browser history.
    Last updated -
    79
    TypeScript
  • -
    security
    A
    license
    -
    quality
    A Model Context Protocol (MCP) server that allows AI assistants like Claude to interact with Go's Language Server Protocol (LSP) and benefit from advanced Go code analysis features.
    Last updated -
    37
    Go
    Apache 2.0
  • -
    security
    F
    license
    -
    quality
    An MCP (Multi-Agent Conversation Protocol) Server that provides a standardized interface for interacting with Google's Cloud Vision API, enabling AI agents to analyze images and extract visual information through natural language.
    Last updated -
    Python
  • A
    security
    A
    license
    A
    quality
    A modern Model Context Protocol (MCP) server that enables AI assistants to collect interactive user feedback, supporting text and image-based responses.
    Last updated -
    3
    Python
    MIT License

View all related MCP servers

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

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