champierre_image_mcp_server

champierre_image_mcp_server

by champierre
An MCP server that analyzes image content using GPT-4-turbo for detailed descriptions.

Image Analysis MCP Server

Overview

The Image Analysis MCP Server is a specialized tool designed to analyze image content using the GPT-4-turbo model. It accepts image URLs as input and provides detailed analysis of the image's content, making it ideal for applications requiring high-accuracy image recognition and description.

Key Features

  • Image URL Analysis: Accepts image URLs and provides detailed content analysis.
  • GPT-4-turbo Integration: Leverages the GPT-4-turbo model for high-precision image recognition.
  • URL Validation: Includes functionality to check the validity of image URLs.

Installation

To set up the Image Analysis MCP Server, follow these steps:

# Clone the repository
git clone https://github.com/champierre/image-mcp-server.git
cd image-mcp-server

# Install dependencies
npm install

# Compile TypeScript
npm run build

Configuration

To use the server, you need an OpenAI API key. Set the following environment variable:

OPENAI_API_KEY=your_openai_api_key

MCP Server Setup

For VSCode Claude Extension

Add the following configuration to cline_mcp_settings.json:

{
  "mcpServers": {
    "image-analysis": {
      "command": "node",
      "args": ["/path/to/image-mcp-server/dist/index.js"],
      "env": {
        "OPENAI_API_KEY": "your_openai_api_key"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

For Claude Desktop App

Add the following configuration to claude_desktop_config.json:

{
  "mcpServers": {
    "image-analysis": {
      "command": "node",
      "args": ["/path/to/image-mcp-server/dist/index.js"],
      "env": {
        "OPENAI_API_KEY": "your_openai_api_key"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Usage

Once the MCP server is configured, you can use the following tool:

  • analyze_image: Analyzes the content of an image URL.

Example

画像URLを分析してください: https://example.com/image.jpg

Development

To run the server in development mode:

npm run dev

License

This project is licensed under the ISC License.

Resources

Features & Capabilities

Categories
mcp_server model_context_protocol javascript gpt-4-turbo image_analysis api_integration claude

Implementation Details

Stats

0 Views
0 Favorites
1 GitHub Stars

Repository Info

champierre Organization

Similar Servers

continuedev_continue by continuedev
0
0
0