qualien-mcp
OfficialProvides tools to manage Docker containers, with destructive operations blocked by default for safety.
Enables reading Figma designs using a FIGMA_API_KEY.
Integrates with GitHub's hosted MCP to handle pull requests, issues, and code review, with OAuth login support.
Provides tools to read and update Jira issues using an Atlassian API token.
Allows inspecting and operating a Kubernetes cluster using the local kubeconfig, with destructive commands blocked by default.
Provides SQL access to MySQL databases for validating backend data, read-only by default with write/DDL operations blocked.
Enables reading and posting Slack messages using a Slack token.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@qualien-mcpOpen the login page in Playwright, screenshot it, and compare with the fixture file."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
qualien-mcp
A composite MCP gateway — it aggregates multiple Model Context Protocol servers behind one connection, curated for SDET / QE workflows. Add one server to your AI assistant instead of five.
npx qualien-mcpOut of the box it serves the QE starter pair — Playwright MCP (browser automation, DOM, screenshots) and Filesystem MCP (read/edit project files, page objects, test utils) — with zero config. Tools are exposed to your assistant namespaced as playwright__… and filesystem__….
Why a gateway?
Your assistant can already connect to many MCP servers directly — so a gateway earns its place by doing what a pile of servers can't:
One endpoint to add to any client (Claude Code, Claude Desktop, Cursor, …).
Curation — enable/disable per server and per tool. Fewer, better-named tools = better tool-selection by the model (dumping 200 tools at it makes it worse).
One routing/logging surface — every call is logged to stderr with the downstream, tool, and latency.
Clean lifecycle — spawns each downstream as a child process and tears them all down on exit (no orphaned browser processes).
Curated for QE — an opinionated SDET toolkit, not a generic proxy.
Use it with your assistant
Claude Code (.mcp.json or user settings):
{
"mcpServers": {
"qualien": { "command": "npx", "args": ["-y", "qualien-mcp"] }
}
}Claude Desktop (claude_desktop_config.json) — same shape under mcpServers.
That single entry gives your assistant every tool from every aggregated server.
Add more servers
Drop a qualien-mcp.config.json in your working directory (or pass --config <path>). Entries merge over the built-in defaults — redefine a key to change it, or set enabled: false to turn a default off. No new release needed.
{
"servers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/abs/path/to/allow"]
},
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
},
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
},
"playwright": {
"command": "npx",
"args": ["-y", "@playwright/mcp@latest"],
"tools": { "deny": ["browser_close"] }
}
}
}See qualien-mcp.config.example.json for the full shape (command, args, env, enabled, tools.allow / tools.deny).
Built-in catalog
qualien-mcp ships a curated catalog of known servers (verified against npm), so you enable one by key with just your secrets — no need to remember packages or commands:
{
"servers": {
"chrome-devtools": { "enabled": true },
"postgres": { "enabled": true, "env": { "DATABASE_URI": "postgres://…" } },
"slack": { "enabled": true, "env": { "SLACK_MCP_XOXP_TOKEN": "xoxp-…" } }
}
}Run npx qualien-mcp catalog to list them all with what each needs. Current catalog:
Key | What | Needs |
| Browser automation, DOM, screenshots | — |
| Read/edit project files | a dir to allow (default cwd) |
| PRs, issues, code review | your GitHub OAuth App + |
| Structured reasoning / debugging | — |
| Persistent knowledge graph | — |
| Network, console, perf, storage | — |
| SQL / validate backend data |
|
| SQL / validate backend data | MySQL env |
| Read/post Slack |
|
| Manage containers | Docker daemon |
| Inspect/operate a cluster | kubeconfig |
| Drive any REST API from its spec |
|
| Read/update Jira issues | Atlassian API token env |
| Read Figma designs |
|
use mounts a catalog server under a different key (e.g. two databases): { "db-prod": { "use": "postgres", "enabled": true, "env": {…} } }. Anything not in the catalog you still define in full (command/args or type/url).
Remote & OAuth servers (e.g. GitHub)
Downstreams can be remote (Streamable HTTP) as well as local. A remote server is { "type": "http", "url": "…" }, and if it needs OAuth, each user logs in with their own account — tokens are stored per user at ~/.qualien-mcp/credentials.json (0600) and are never bundled or shared.
GitHub's hosted MCP is the reference case. It does not support dynamic client registration, so you register your own GitHub OAuth App once and give qualien-mcp its Client ID:
GitHub → Settings → Developer settings → OAuth Apps → New. Set the callback URL to
http://127.0.0.1:41999/callback. Copy the Client ID.In
qualien-mcp.config.json:{ "servers": { "github": { "type": "http", "url": "https://api.githubcopilot.com/mcp/", "oauth": true, "clientId": "<your client id>" } } }Authorize (opens your browser, once):
npx qualien-mcp login github
After that the gateway connects to GitHub non-interactively (refreshing tokens as needed) and exposes github__* tools. If a remote server isn't logged in yet, the gateway skips it with a hint (run: npx qualien-mcp login github) and still serves everything else — it never blocks startup. Servers that do support dynamic registration need no clientId.
Safe by default
qualien-mcp enforces guardrails centrally, before forwarding a call — so they hold no matter what the downstream permits, and composite tools can't bypass them either:
Databases are read-only —
postgres/mysqlcalls containing write/DDL SQL (INSERT/UPDATE/DELETE/DROP/…) are refused. Opt in with{ "postgres": { "readOnly": false } }.Filesystem roots —
{ "filesystem": { "roots": ["./src", "./tests"] } }refuses any call whose path argument escapes those directories.Destructive infra tools blocked —
docker/kubernetestools whose name looks destructive (delete/remove/prune/kill/…) are refused unless{ "allowDestructive": true }.Plus per-server
tools.deny/tools.allowcuration.
Honest scope: these stop an LLM from accidentally doing damage. The SQL check is keyword-based (heuristic), not a parser — it is not adversarial sandboxing. Real isolation needs the downstream's own permissions or a container.
Composite QE tools
Beyond passthrough, qualien-mcp ships tools it implements itself (namespace qe__) that orchestrate several downstreams in one call — the QE payoff of a gateway.
qe__verify_api_vs_db — end-to-end API↔DB consistency in one call. Give it two sub-calls (namespaced tools you can discover via tools/list); it runs both and diffs the payloads:
{
"api": { "tool": "openapi__getUser", "arguments": { "id": 1 } },
"db": { "tool": "postgres__query", "arguments": { "sql": "select id, name from users where id = 1" } },
"match": "subset" // every field the DB returns must match the API (default)
}
// → { "match": false, "differences": [ { "path": "name", "api": "Ann", "db": "Bob" } ], … }Composite tools appear only when their required downstreams are connected (qe__verify_api_vs_db needs a database server). More to come (repro-from-Jira, page-object-from-URL, flaky triage).
How it works
In one process, qualien-mcp is both an MCP server to your assistant and an MCP client to each downstream:
assistant ⇄ qualien-mcp ⇄ playwright-mcp
⇄ filesystem-mcp
⇄ …tools/listfans out to every downstream, filters by your curation rules, and namespaces each as<server>__<tool>.tools/callroutes by that prefix to the owning server and passes the response straight through.Resources and prompts are aggregated the same way when a downstream provides them.
A downstream that fails to start is logged and skipped — the gateway still serves the rest.
Logs go to stderr (stdout is the protocol); your host surfaces them in its MCP logs.
Roadmap
v0.1 — Playwright + Filesystem, namespacing, curation, logging, clean lifecycle ✅
Next — config-driven expansion (GitHub via its hosted OAuth MCP, DB, Sequential-Thinking, Memory, Chrome DevTools), composite QE tools (e.g. verify API ↔ DB consistency in one call), safety scoping.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
34 production API tools over one hosted MCP endpoint.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
Self-hosted federated MCP gateway: one OAuth 2.1 MCP server in front of N apps, user-level scopes.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/qualienai/qualien-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server