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.
Servidores relacionados
Alpha Vantage MCP Server
patrocinadorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Atlassian Rovo MCP Server (Streamin HTTP)
https://mcp.atlassian.com/v1/mcp
MCP ZAP Server
Exposes OWASP ZAP as an MCP server, enabling AI agents to orchestrate security scans, import OpenAPI specs, and generate reports.
MetaMCP
A proxy server that combines multiple MCP servers into a single endpoint, routing requests to the appropriate underlying server.
Unity MCP Server
An MCP server that allows AI assistants to programmatically interact with Unity development projects.
MCP Servers
A collection of reference implementations for the Model Context Protocol (MCP), demonstrating how to give LLMs secure access to tools and data using Typescript and Python SDKs.
SettleGrid
Per-call billing and monetization for MCP servers — add usage metering, API key validation, and Stripe payouts to any MCP tool with 2 lines of code.
POC MCP HTTP Server
A proof-of-concept server implementing the Model Context Protocol with a streamable HTTP transport.
DevServer MCP
Manages development servers for LLM-assisted workflows, offering programmatic control through a unified TUI and experimental browser automation via Playwright.
Claude Code Exporter
Export and organize Claude Code conversations with powerful filtering. Supports CLI and MCP server integration for Claude Desktop.
Generic API MCP Server
A generic server to interact with any REST API, allowing you to query data, create items, and call methods.