Overview
The gyazo-mcp-server is a Model Context Protocol server designed for integrating Gyazo images, allowing AI assistants to access and interact with Gyazo images through a structured protocol.
To use the gyazo-mcp-server, you need to set up a Gyazo account, obtain an API access token, and configure the server with your token. You can then integrate it with applications like Claude Desktop.
- Access to Gyazo images via
gyazo-mcp://URIs, including original content and metadata. - Fetch the latest Gyazo image with thegyazo_latest_imagetool, which returns image content and OCR data if available. - Supports various image formats such as JPEG and PNG.
- Integrating Gyazo images into AI applications for enhanced visual content access.
- Automating image retrieval and processing in development environments.
- Enabling OCR capabilities for images stored in Gyazo.
Add to your AI client
Use these steps to connect gyazo-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"gyazo-mcp-server-yuiseki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gyazo-mcp-server-yuiseki"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"gyazo-mcp-server-yuiseki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gyazo-mcp-server-yuiseki"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"gyazo-mcp-server-yuiseki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gyazo-mcp-server-yuiseki"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"gyazo-mcp-server-yuiseki": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gyazo-mcp-server-yuiseki"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"gyazo-mcp-server-yuiseki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gyazo-mcp-server-yuiseki"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"gyazo-mcp-server-yuiseki": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-gyazo-mcp-server-yuiseki"
]
}
}
}FAQ
What is required to run the gyazo-mcp-server?
You need a Gyazo account, an API access token, and Node.js installed to run the server.
Can I use this server with other applications?
Yes, it can be integrated with any application that supports the Model Context Protocol.
How do I debug the server?
You can use the MCP Inspector for debugging, which provides a URL for browser-based debugging tools.