groundlight-mcp-server
MCP Server for Groundlight
groundlight
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:
-
create_detector
-
Description: Create a detector based on the specified configuration. Supports three modes:
- Binary: Answers 'yes' or 'no' to a natural-language query about images.
- Multiclass: Classifies images into predefined categories based on natural-language queries.
- 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
-
-
get_detector
- Description: Get a detector by its ID.
- Input:
detector_id
(string) - Returns:
Detector
object
-
list_detectors
- Description: List all detectors associated with the current user.
- Input: None
- Returns: List of
Detector
objects
-
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
-
get_image_query
- Description: Get an existing image query by its ID.
- Input:
image_query_id
(string) - Returns:
ImageQuery
object
-
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
-
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
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
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.
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.
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.
@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.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

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.

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.