Assay vs MCP Servers

One 9 MB binary replaces dozens of MCP server processes. 25 domains fully covered, 15+ coming soon.

Size comparison: 10 MCP servers ≈ 500 MB npm deps + 10 processes. Assay = 9 MB + 1 process.

Before & After

Today, wiring MCP servers into your .mcp.json means one npx process per domain:

Before: 10 MCP servers in .mcp.json

{
  "mcpServers": {
    "kubernetes": { "command": "npx", "args": ["-y", "mcp-server-kubernetes"] },
    "grafana": { "command": "npx", "args": ["-y", "@grafana/mcp-grafana"] },
    "postgres": { "command": "npx", "args": ["-y", "@singlestore/postgres-mcp"] },
    "vault": { "command": "npx", "args": ["-y", "vault-mcp-server"] },
    "s3": { "command": "npx", "args": ["-y", "@aws/mcp", "s3"] },
    "prometheus": { "command": "npx", "args": ["-y", "prometheus-mcp-server"] },
    "filesystem": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem"] },
    "argocd": { "command": "npx", "args": ["-y", "argocd-mcp"] },
    "harbor": { "command": "npx", "args": ["-y", "harbor-mcp"] },
    "certmanager": { "command": "npx", "args": ["-y", "certmanager-mcp"] }
  }
}

After: 1 Assay entry (Coming Soon in v0.6.0)

{
  "mcpServers": {
    "assay": {
      "command": "assay",
      "args": ["mcp-serve"],
      "note": "Coming Soon in v0.6.0 โ€” replaces all 10 servers above"
    }
  }
}

Today: Use assay context <query> to get module docs for your LLM agent. See Agent Guides.

Coverage Key

Comparison Table

MCP Server Stars Assay Equivalent Coverage
Tier 1: 10K+ Stars
modelcontextprotocol/servers (fetch, filesystem) 79K http.* builtins + fs.* builtins โœ… Full
browser-use 35K โ€” โŒ Out of Scope (browser automation)
cline/mcp-server 40K โ€” โŒ Out of Scope (IDE tool)
aws/mcp (S3, Lambda, EC2) 8.2K assay.s3 (S3 only) ๐ŸŸก Partial
Tier 2: 2Kโ€“10K Stars
@grafana/mcp-grafana 2.4K assay.grafana + assay.prometheus + assay.loki + assay.alertmanager โœ… Full
mcp-server-github ~5K โ€” ๐ŸŸ  Coming Soon
mcp-server-git ~5K โ€” ๐ŸŸ  Coming Soon
mcp-server-slack ~3K โ€” ๐ŸŸ  Coming Soon
@singlestore/postgres-mcp 2.1K assay.postgres + db.* builtins โœ… Full
mcp-server-docker ~2K assay.harbor (registry) ๐ŸŸก Partial
mcp-server-redis ~2K โ€” ๐ŸŸ  Coming Soon
mcp-server-kubernetes 1.3K assay.k8s โœ… Full
Tier 3: 500โ€“2K Stars
mcp-server-mongodb ~800 โ€” ๐ŸŸ  Coming Soon
mcp-server-sqlite ~600 db.* builtins โœ… Full
mcp-server-elasticsearch ~500 โ€” ๐ŸŸ  Coming Soon
mcp-server-mysql ~400 db.* builtins โœ… Full
mcp-server-jira ~400 โ€” ๐ŸŸ  Coming Soon
prometheus-mcp-server 372 assay.prometheus โœ… Full
terraform-mcp-server ~300 assay.crossplane (infra-as-code) ๐ŸŸก Partial
mcp-server-sentry ~300 โ€” ๐ŸŸ  Coming Soon
argocd-mcp ~200 assay.argocd โœ… Full
mcp-server-s3 ~200 assay.s3 โœ… Full
mcp-server-jwt ~100 crypto.jwt_sign builtin โœ… Full
traefik-mcp ~100 assay.traefik โœ… Full
mcp-server-temporal ~100 assay.temporal โœ… Full
harbor-mcp ~50 assay.harbor โœ… Full
mcp-certmanager ~50 assay.certmanager โœ… Full
flux-mcp ~50 assay.flux โœ… Full
vault-mcp-server 31 assay.vault + assay.openbao โœ… Full
crossplane-mcp ~30 assay.crossplane โœ… Full
unleash-mcp ~30 assay.unleash โœ… Full
velero-mcp ~30 assay.velero โœ… Full
kargo-mcp ~20 assay.kargo โœ… Full
zitadel-mcp ~20 assay.zitadel โœ… Full
eso-mcp ~20 assay.eso โœ… Full
dex-mcp ~10 assay.dex โœ… Full
Tier 4: Anthropic/Model Reference
playwright-mcp ~5K โ€” โŒ Out of Scope (browser)
exa-mcp-server ~1K โ€” โŒ Out of Scope (web search)
@anthropic/mcp-server-filesystem ref fs.* builtins โœ… Full
@anthropic/mcp-server-fetch ref http.* builtins โœ… Full
mcp-server-websocket ~100 ws.* builtins โœ… Full
mcp-server-crypto ~50 crypto.* builtins โœ… Full

โœ… 25+ domains fully covered · ๐ŸŸ  10+ Coming Soon · โŒ 4 out of scope (browser, web search, IDE)