streamable-httpMITupdated 28d ago
The mabl Model Context Protocol (MCP) server lets AI assistants and agents work directly with your mabl tests — run tests, analyze failures, create tests in the cloud, and query results across your workspaces.
mabl 能做什么?
mabl MCP server
The mabl Model Context Protocol (MCP) server lets AI assistants and agents work directly with your mabl tests — run tests, analyze failures, create tests in the cloud, and query results across your workspaces.
This repository hosts the public documentation and registry listing for the hosted mabl MCP server. The server is operated by mabl as a managed remote service — there is nothing to install or self-host.
- Registry listing:
com.mabl/mcpon the official MCP Registry - Tool reference (always current): https://help.mabl.com/hc/en-us/articles/47047431915284
- About mabl: https://www.mabl.com
Endpoints
The server is hosted at mcp.mabl.com and supports two transports:
| Transport | URL |
|---|---|
| Streamable HTTP (recommended) | https://mcp.mabl.com/mcp |
| Server-Sent Events (SSE) | https://mcp.mabl.com/sse |
Requirements
- A mabl account — you sign in with your existing mabl credentials.
- The AI-powered tools (failure analysis, results-analysis chat, cloud test generation) require the corresponding mabl AI entitlements on your workspace.
Authentication
The server uses standard MCP OAuth. The first time your client connects it opens a browser to sign in with your mabl identity and authorize access; after that your client caches the token and reconnects automatically — there are no API keys to copy or manage. See docs/authentication.md for the full flow.
Connect a client
Point any MCP-capable client at the Streamable HTTP endpoint
https://mcp.mabl.com/mcp (or the SSE endpoint https://mcp.mabl.com/sse for
clients that require SSE). A few common clients:
Claude Code
claude mcp add --transport http mabl https://mcp.mabl.com/mcp
Codex CLI
codex mcp add mabl --url https://mcp.mabl.com/mcp
Gemini CLI
This repository doubles as a Gemini CLI extension, so it installs in one command — no JSON to edit:
gemini extensions install https://github.com/mablhq/mabl-mcp-server
The extension configures the endpoint and ships a GEMINI.md with guidance on
using the mabl tools. Verify it with gemini extensions list.
Cursor / VS Code / other JSON-configured clients
Add an HTTP MCP server entry pointing at the endpoint:
{
"mcpServers": {
"mabl": {
"type": "http",
"url": "https://mcp.mabl.com/mcp"
}
}
}
Claude Desktop
Add a custom connector with the URL https://mcp.mabl.com/mcp.
On first use, the client will prompt you to sign in to mabl in your browser.
Available tools
The canonical, always-current tool reference is the
mabl help center article,
regenerated from the live server on every release. docs/TOOLS.md
summarizes the high-level tool areas and links to it. You can also call
tools/list from any connected client to see exactly what the server exposes.
Support
- mabl help center: https://help.mabl.com
- Security disclosures: see SECURITY.md
License
MIT © 2026 mabl, Inc.
安装
把 mabl 添加到你的客户端。选择你正在使用的那个。
claude mcp add --transport http mabl https://mcp.mabl.com/mcpcodex mcp add mabl --url https://mcp.mabl.com/mcp{
"mcpServers": {
"mabl": {
"url": "https://mcp.mabl.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"mabl": {
"type": "http",
"url": "https://mcp.mabl.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"mabl": {
"url": "https://mcp.mabl.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mabl": {
"serverUrl": "https://mcp.mabl.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
评分
39 / 100
不完整
- 文档22/25
- 维护25/25
- 可信度16/20
- 能力0/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 20 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 1.0.3最新 | 2026年7月29日 |
| 1.0.2 | 2026年6月22日 |
| 1.0.1 | 2026年5月14日 |
| 1.0.0 | 2026年5月14日 |