Skip to main content
Glama
qualienai

qualien-mcp

Official
by qualienai

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-mcp

Out of the box it serves the QE starter pairPlaywright 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

playwright (default)

Browser automation, DOM, screenshots

filesystem (default)

Read/edit project files

a dir to allow (default cwd)

github

PRs, issues, code review

your GitHub OAuth App + login (see below)

sequential-thinking

Structured reasoning / debugging

memory

Persistent knowledge graph

chrome-devtools

Network, console, perf, storage

postgres

SQL / validate backend data

DATABASE_URI

mysql

SQL / validate backend data

MySQL env

slack

Read/post Slack

SLACK_MCP_XOXP_TOKEN

docker

Manage containers

Docker daemon

kubernetes

Inspect/operate a cluster

kubeconfig

openapi

Drive any REST API from its spec

API_BASE_URL, OPENAPI_SPEC_PATH

jira

Read/update Jira issues

Atlassian API token env

figma

Read Figma designs

FIGMA_API_KEY

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:

  1. GitHub → Settings → Developer settings → OAuth Apps → New. Set the callback URL to http://127.0.0.1:41999/callback. Copy the Client ID.

  2. In qualien-mcp.config.json:

    {
      "servers": {
        "github": {
          "type": "http",
          "url": "https://api.githubcopilot.com/mcp/",
          "oauth": true,
          "clientId": "<your client id>"
        }
      }
    }
  3. 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-onlypostgres/mysql calls 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 blockeddocker/kubernetes tools whose name looks destructive (delete/remove/prune/kill/…) are refused unless { "allowDestructive": true }.

  • Plus per-server tools.deny / tools.allow curation.

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/list fans out to every downstream, filters by your curation rules, and namespaces each as <server>__<tool>.

  • tools/call routes 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

-
license - not tested
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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.

View all MCP Connectors

Latest Blog Posts

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