🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

mintqa-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mintqa-mcp

MCP server for Mint — AI-powered QA in your CI. Install once, drive Mint from Claude Code / Cursor / Codex / any MCP client.

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
39
Maintainers
1
Weekly downloads
 
Created
Source

mintqa-mcp

MCP server for Mint — AI-powered QA that runs your app in a real browser on every PR and posts video proof.

Mint handles the test logic; this MCP gives your AI assistant the keys.

What you get

  • One tool call to set Mint up on a new repo (replaces a 300-line paste-prompt)
  • Trigger Mint runs from your IDE: "test this PR"
  • Inspect run results without leaving your terminal

Install

You need a Mint API key. Get one free at mintqa.dev/settings/keys.

Claude Code

claude mcp add mintqa --env MINT_API_KEY=mint_xxx npx mintqa-mcp

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "mintqa": {
      "command": "npx",
      "args": ["mintqa-mcp"],
      "env": { "MINT_API_KEY": "mint_xxx" }
    }
  }
}

Codex CLI / generic MCP client

Run npx mintqa-mcp with MINT_API_KEY in env.

How it works

This package is a thin stdio shim. It speaks the MCP stdio transport on one side and proxies every request/notification to the hosted Mint MCP server at https://mintqa.dev/mcp (Streamable HTTP transport, Bearer auth) on the other.

All tool logic lives server-side, which means:

  • New tools show up immediately — no npx mintqa-mcp upgrade needed.
  • The shim itself is ~150 lines and almost never republishes.

If your MCP client speaks Streamable HTTP directly, skip this package and point it at https://mintqa.dev/mcp with an Authorization: Bearer … header.

Tools

The hosted server is the source of truth for tool definitions. Ask your client to list tools after connecting (tools/list), or visit mintqa.dev/mcp for the current catalog.

Configuration

Env varDefaultPurpose
MINT_API_KEY(required)Bearer token from mintqa.dev
MINT_MCP_URLhttps://mintqa.dev/mcpOverride for self-hosted Mint

Submitting to the MCP registry

This package ships with server.json for the official MCP registry. To publish there after npm publish:

mcp-publisher publish

(See the registry docs for the current CLI; the registry verifies the io.github.<owner>/... name against the linked GitHub repo.)

License

MIT

Keywords

mcp

FAQs

Package last updated on 19 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts