by nota
Provides AI assistants access to Gyazo images via Model Context Protocol, offering searchable image resources, metadata retrieval, and upload capabilities.
Provides AI assistants with direct access to Gyazo image libraries through Model Context Protocol. Images are exposed as resources with gyazo-mcp://
URIs, allowing retrieval of original content, metadata, and OCR data.
npm install -g @notainc/gyazo-mcp-server
export GYAZO_ACCESS_TOKEN=your-access-token
npx @notainc/gyazo-mcp-server
{
"mcpServers": {
"gyazo-mcp-server": {
"command": "npx",
"args": ["@notainc/gyazo-mcp-server"],
"env": { "GYAZO_ACCESS_TOKEN": "your-access-token" }
}
}
}
gyazo-mcp://
URIs, each containing original image data, metadata (title, description, app, URL), and OCR text when available.gyazo_search
: Full‑text search across a user's Gyazo captures, supporting keyword, title, app, URL, date range, and pagination.gyazo_image
: Retrieve a specific image by ID or URL, returning both content and detailed metadata.gyazo_latest_image
: Get the most recent capture, including OCR text if present.gyazo_upload
: Upload a base64‑encoded image with optional metadata (title, description, referer URL, app name) and receive the permalink and ID.Q: How do I get a Gyazo API token?
A: Log into Gyazo, go to API → Register applications, create a new app (Callback URL can be http://localhost
), then generate and copy the access token.
Q: What environment variable is required?
A: GYAZO_ACCESS_TOKEN
must contain the Gyazo API token.
Q: Does the server return OCR text?
A: Yes, when OCR data is available for an image, it is included in the resource metadata and in the gyazo_latest_image
tool.
Q: Can I run the server in Docker?
A: Yes, use the provided Docker command in the README or build the image with npm run image:build
.
Q: Is authentication needed per request?
A: No additional per‑request auth is required; the server uses the token set in GYAZO_ACCESS_TOKEN
.
A Model Context Protocol server for Gyazo image integration
This is a TypeScript-based MCP server that provides access to Gyazo images. It allows AI assistants to access and interact with Gyazo images through the Model Context Protocol, providing:
gyazo-mcp://
URIsgyazo_search
- Full-text search for captures uploaded by users on Gyazo
gyazo_image
- Fetch image content and metadata from Gyazo
gyazo_latest_image
- Fetch the most recent image from Gyazo
gyazo_upload
- Upload an image to Gyazo
The easiest way to install the Gyazo MCP server is via npm:
npm install -g @notainc/gyazo-mcp-server
http://localhost
for the Callback URLGYAZO_ACCESS_TOKEN
environment variable with your tokenTo use with Claude Desktop, add the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"gyazo-mcp-server": {
"command": "npx",
"args": ["@notainc/gyazo-mcp-server"],
"env": {
"GYAZO_ACCESS_TOKEN": "your-access-token-here"
}
}
}
}
{
"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"
}
}
}
}
Install dependencies:
npm ci
Build the server:
npm run build
For development with auto-rebuild:
npm run watch
npm run image:build
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "gyazo-mcp-server": { "command": "npx", "args": [ "@notainc/gyazo-mcp-server" ], "env": { "GYAZO_ACCESS_TOKEN": "<YOUR_ACCESS_TOKEN>" } } } }
Discover more MCP servers with similar functionality and use cases
by danny-avila
Provides a customizable ChatGPT‑like web UI that integrates dozens of AI models, agents, code execution, image generation, web search, speech capabilities, and secure multi‑user authentication, all open‑source and ready for self‑hosting.
by ahujasid
BlenderMCP integrates Blender with Claude AI via the Model Context Protocol (MCP), enabling AI-driven 3D scene creation, modeling, and manipulation. This project allows users to control Blender directly through natural language prompts, streamlining the 3D design workflow.
by pydantic
Enables building production‑grade generative AI applications using Pydantic validation, offering a FastAPI‑like developer experience.
by GLips
Figma-Context-MCP is a Model Context Protocol (MCP) server that provides Figma layout information to AI coding agents. It bridges design and development by enabling AI tools to directly access and interpret Figma design data for more accurate and efficient code generation.
by mcp-use
Easily create and interact with MCP servers using custom agents, supporting any LLM with tool calling and offering multi‑server, sandboxed, and streaming capabilities.
by sonnylazuardi
This project implements a Model Context Protocol (MCP) integration between Cursor AI and Figma, allowing Cursor to communicate with Figma for reading designs and modifying them programmatically.
by lharries
WhatsApp MCP Server is a Model Context Protocol (MCP) server for WhatsApp that allows users to search, read, and send WhatsApp messages (including media) through AI models like Claude. It connects directly to your personal WhatsApp account via the WhatsApp web multi-device API and stores messages locally in a SQLite database.
by idosal
GitMCP is a free, open-source remote Model Context Protocol (MCP) server that transforms any GitHub project into a documentation hub, enabling AI tools to access up-to-date documentation and code directly from the source to eliminate "code hallucinations."
by Klavis-AI
Klavis AI provides open-source Multi-platform Control Protocol (MCP) integrations and a hosted API for AI applications. It simplifies connecting AI to various third-party services by managing secure MCP servers and authentication.