Are you the author? Sign in to claim
MCP server for displaying images from local filesystem directly in Claude conversations
A Model Context Protocol (MCP) server for displaying images from your local filesystem directly in Claude conversations.
npm install
npm run build
~/Library/Application Support/Claude/claude_desktop_config.json):{
"mcpServers": {
"image-viewer": {
"command": "node",
"args": ["/Users/ian/image-viewer-mcp/dist/index.js"]
}
}
}
Display an image from the filesystem. Returns the image as base64 data that Claude can render.
imagePath (string): Path to the image file (supports ~ for home directory)Find and list image files in a directory.
searchPath (string): Directory path to search for imagesrecursive (boolean, optional): Whether to search subdirectories recursivelyGet detailed information about an image file without loading the full image data.
imagePath (string): Path to the image fileDisplay the headshot image:
- Tool: display-image
- imagePath: ~/Pictures/Headshot_Headphones.jpg
List all images in Pictures folder:
- Tool: list-images
- searchPath: ~/Pictures
- recursive: false
Get info about an image:
- Tool: image-info
- imagePath: ~/Pictures/Headshot_Headphones.jpg
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots