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
- โ Full โ Feature parity or better via Assay builtins/stdlib
- ๐ก Partial โ Some capabilities covered, others missing
- ๐ Coming Soon โ Planned for a future Assay release
- โ Out of Scope โ Not an Assay goal (browser automation, web search, IDE tooling)
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)