groundlight-mcp-server

groundlight-mcp-server

MCP Server for Groundlight

groundlight

Developer Tools
Visit Server

README

groundlight-mcp-server

Overview

A Model Context Protocol (MCP) server for interacting with Groundlight. This server provides tools to create and list both Detectors and ImageQueries.

This MCP server is still in early development. The functionality and available tools are subject to change and expansion as we continue to develop and improve the server.

Tools

The following tools are available in the Groundlight MCP server:

  1. create_detector

    • Description: Create a detector based on the specified configuration. Supports three modes:

      1. Binary: Answers 'yes' or 'no' to a natural-language query about images.
      2. Multiclass: Classifies images into predefined categories based on natural-language queries.
      3. Counting: Counts occurrences of specified objects in images using natural-language descriptions.

      All detectors analyze images to answer natural-language queries and return confidence scores indicating result reliability. If confidence falls below the specified threshold, the query is escalated to human review. Detectors improve over time through continuous learning from feedback and additional examples.

    • Input: config (DetectorConfig object with name, query, confidence_threshold, mode, and mode-specific configuration)

    • Returns: Detector object

  2. get_detector

    • Description: Get a detector by its ID.
    • Input: detector_id (string)
    • Returns: Detector object
  3. list_detectors

    • Description: List all detectors associated with the current user.
    • Input: None
    • Returns: List of Detector objects
  4. submit_image_query

    • Description: Submit an image to be answered by the specified detector. The image can be provided as a file path, URL, or raw bytes. The detector will return a response with a label and confidence score.
    • Input: detector_id (string), image (string or bytes)
    • Returns: ImageQuery object
  5. get_image_query

    • Description: Get an existing image query by its ID.
    • Input: image_query_id (string)
    • Returns: ImageQuery object
  6. list_image_queries

    • Description: List all image queries associated with the specified detector. Note that this may return a large number of results.
    • Input: detector_id (string)
    • Returns: List of ImageQuery objects
  7. get_image

    • Description: Get the image associated with an image query by its ID. Optionally annotate with bounding boxes on the image if available.
    • Input: image_query_id (string), annotate (boolean, default: false)
    • Returns: Image object

Configuration

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

Docker

"mcpServers": {
  "groundlight": {
    "command": "docker",
    "args": ["run", "--rm", "-i", "-e", "GROUNDLIGHT_API_TOKEN", "groundlight/groundlight-mcp-server"],
    "env": {
        "GROUNDLIGHT_API_TOKEN": "YOUR_API_TOKEN_HERE"
    }
  }
}

Development

Build the Docker image locally:

make build-docker

Run the Docker image locally:

make run-docker

[Groundlight Internal] Push the Docker image to Docker Hub (requires DockerHub credentials):

make push-docker

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
MCP Package Docs Server

MCP Package Docs Server

Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.

Featured
Local
TypeScript
Claude Code MCP

Claude Code MCP

An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.

Featured
Local
JavaScript
@kazuph/mcp-taskmanager

@kazuph/mcp-taskmanager

Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.

Featured
Local
JavaScript
Linear MCP Server

Linear MCP Server

Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Featured
JavaScript
mermaid-mcp-server

mermaid-mcp-server

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.

Featured
JavaScript
Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
Linear MCP Server

Linear MCP Server

A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Featured
JavaScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python