SeaLights
An MCP server for interacting with the SeaLights platform for quality intelligence.
sealights-mcp
MCP server for SeaLights
Running with Podman or Docker
You can run the sealights-mcp server in a container using Podman or Docker:
Example configuration for running with Podman:
{
"mcpServers": {
"sealights": {
"command": "podman",
"args": [
"run",
"-i",
"--rm",
"-e", "SEALIGHTS_DOMAIN",
"-e", "SEALIGHTS_API_TOKEN",
"-e", "SEALIGHTS_AGENT_TOKEN",
"quay.io/maorfr/sealights-mcp"
],
"env": {
"SEALIGHTS_DOMAIN": "https://your-domain.sealights.co",
"SEALIGHTS_API_TOKEN": "REDACTED",
"SEALIGHTS_AGENT_TOKEN": "REDACTED"
}
}
}
}
Running with non-stdio transport
To run the server with a non-stdio transport (such as SSE), set the MCP_TRANSPORT
environment variable to a value other than stdio
(e.g., sse
).
Example configuration to connect to a non-stdio MCP server:
{
"mcpServers": {
"sealights": {
"url": "https://sealights-mcp.example.com/sse",
"headers": {
"X-Sealights-Api-Token": "REDACTED",
"X-Sealights-Agent-Token": "REDACTED"
}
}
}
}
Replace REDACTED
with your API token according to https://api-doc.sealights.io/#authorization.
Available Tools
get_apps()
: Get list of applications.get_audit_log_actions()
: Get a list of all actions recorded in the audit log.get_branches(app_name, visibility="visible")
: Get list of branches for a specific application.get_build_coverage(bsid)
: Get coverage data for a specific build by Build Session ID (bsid).get_build_metadata(bsid)
: Get detailed metadata for a specific build by Build Session ID (bsid).get_builds(app_name="", branch_name="")
: Get list of builds for a specific application and/or branch.get_live_agents()
: Get all live agents.
Related Servers
Cloudflare MCP Server Example
A template for deploying a remote MCP server on Cloudflare Workers without authentication.
Tree-Hugger-JS
Analyze and transform JavaScript/TypeScript code using the tree-hugger-js library.
MCPHost
A CLI host application that enables Large Language Models (LLMs) to interact with external tools through the Model Context Protocol (MCP).
Sailor
Generate and render Mermaid diagrams as images using LLMs.
Android Tester MCP
Automate Android devices using the Gbox SDK.
MCP Tools
A developer toolset for creating a real-time MCP server using the PHP Laravel framework, with GitHub integration.
UseGrant MCP Server
Interact with the UseGrant API for programmatic access control and permissions management.
Jadx MCP Plugin
A Java plugin that exposes the Jadx decompiler API over HTTP for interaction with MCP clients.
XTQuantAI
Integrates the xtquant quantitative trading platform with an AI assistant, enabling AI to access and operate quantitative trading data and functions.
EVM MCP Server
Provides blockchain services for over 30 EVM-compatible networks through a unified interface.