npm @shipeasy/mcpstdioupdated 25d ago
| --- | | Claude Code | claude plugin marketplace add shipeasy-ai/shipeasy โ claude plugin install shipeasy@shipeasy | | Codex | codex plugin marketplace add shipeasy-ai/shipeasy โ codex plugin add shipeasy@shipeasy (or, in the TUI, /plugin marketplace add shipeasy-ai/shipeasy โ /plugin add shipeasy@shipeasy) | | GitHub Copilot CLI | copilot plugin marketplace add shipeasy-ai/shipeasy โ copilot plugin install shipeasy@shipeasy |
What can you do with shipeasy?
Feature flags ยท kill switches ยท dynamic configs ยท A/B experiments ยท metrics ยท i18n โ spun up from a single sentence to your AI coding agent.
Get started โ ย ยทย Website ย ยทย Docs ย ยทย Command reference
What is Shipeasy?
Shipeasy is the AI-native experimentation platform. Feature flags, kill switches, dynamic configs, A/B tests, metrics and translations โ all controllable from where you already work: a sentence to your AI coding agent.
"Ship the new pricing page behind a flag at 5%." "Add a kill switch for checkout in case it breaks." "Run an A/B test on the signup button and tell me which wins."
No dashboards to learn, no SDK boilerplate to hand-write. Shipeasy installs as a plugin into your coding agent and an MCP server, so Claude Code (and 70+ other agents) can create the flag, instrument the metric, wire the SDK call, and roll it out โ end to end, from plain English.
This directory is the source-of-truth for that plugin marketplace.
One plugin tree, many hosts โ the same shipeasy/skills/ directory and the
same shipeasy MCP server feed every coding agent below. Each host gets a tiny
manifest that points at the shared files; nothing is duplicated.
Why teams use it
- ๐ From one sentence to shipped. Describe what you want; the agent creates the gate/config/experiment, instruments the event, and edits the call site.
- ๐๏ธ The whole release toolkit. Feature flags, kill switches, dynamic configs, A/B experiments, event metrics and i18n โ one SDK, one key per entrypoint, one install.
- ๐ Statistics that won't lie to you. Sequential testing, SRM detection, auto-ramp guardrails and holdouts come built in โ no stats degree required.
- โก Edge-fast, globally. Built on Cloudflare Workers + KV with infinite-TTL CDN caching and explicit purge โ flag reads never touch a database on the hot path.
- ๐ค Works with your agent, not against it. Native plugins for Claude Code, Codex and Copilot CLI; shared skills + MCP for everything else.
- ๐ Closes the loop. An operational inbox turns bug reports, feature requests, production errors and metric alerts into one queue your agent can burn down โ even on a schedule, unattended.
Install in 12 seconds
npm install -g @shipeasy/cli
shipeasy setup
That's it. shipeasy setup detects your coding agent, installs the right
integration for it (native plugin where one exists, shared skills + MCP
everywhere else), authenticates, binds the repo to a project, mints keys and
installs @shipeasy/sdk. One command, every host โ then just talk to your agent.
There are two install tiers. Tier 1 hosts have a native plugin system, so
one command bundles skills + MCP. Tier 2 hosts (70+ agents) take the same
shared skills via the
vercel-labs/skills CLI plus a small
MCP config snippet. (shipeasy setup above does the right one for you.)
Tier 1 โ one-command plugin install
| Agent | Install |
|---|---|
| Claude Code | claude plugin marketplace add shipeasy-ai/shipeasy โ claude plugin install shipeasy@shipeasy |
| Codex | codex plugin marketplace add shipeasy-ai/shipeasy โ codex plugin add shipeasy@shipeasy (or, in the TUI, /plugin marketplace add shipeasy-ai/shipeasy โ /plugin add shipeasy@shipeasy) |
| GitHub Copilot CLI | copilot plugin marketplace add shipeasy-ai/shipeasy โ copilot plugin install shipeasy@shipeasy |
Tier 2 โ skills + MCP (Cursor, Windsurf, Cline, Gemini, OpenCode, Continue, โฆ)
# 1. skills โ installs all 17 shipeasy-* skills
npx skills add https://github.com/shipeasy-ai/shipeasy -a <agent>
# 2. MCP โ add the shipeasy server to that agent's MCP config:
# { "mcpServers": { "shipeasy": { "command": "npx", "args": ["-y", "@shipeasy/mcp@latest"] } } }
<agent> is e.g. opencode, cursor, windsurf, cline, gemini-cli,
continue, github-copilot. The full per-host list, exact MCP file paths and
formats live in INSTALL.md (also published at
https://docs.shipeasy.ai/get-started/agents).
Then: "set up shipeasy"
Installing the plugin registers the skills and MCP tools โ it does not run any shell commands. To go live:
- Run
shipeasy setup(or say "set up shipeasy") โ one command detects your subprojects, installs@shipeasy/sdk, authenticates, binds the repo to a project, mints keys, installs the SDK + feature how-to skills into your agents, offers the modules + devtools overlay, and emitsshipeasy-wiring.mdwith the remaining code steps. - Turn on the modules you want โ
shipeasy setupoffers them, or enable one directly withshipeasy install <group>:shipeasy install flagsโ flags + configs + kill switches + experiments + events (the whole decide-at-runtime platform, one pass).shipeasy install opsโ feedback (bugs + feature requests) + production errors + alerts.shipeasy install i18nโ translations.
The matching per-area how-to skills (shipeasy-flags, shipeasy-ops,
shipeasy-i18n) are installed alongside. After that, just talk to your agent.
You โธ Ship a feature gate for the new pricing page, rolled out to 5% of users.
Agent โธ Created gate `new_pricing_page` (rollout 5%). Add gates.check("new_pricing_page")
at apps/web/app/pricing/page.tsx:12 โ done. Want me to bump it to 25%?
Works with your agent
| Native plugin (Tier 1) | Claude Code ยท Codex ยท GitHub Copilot CLI |
| Skills + MCP (Tier 2) | Cursor ยท Windsurf ยท Cline ยท Gemini CLI ยท OpenCode ยท Continue ยท OpenClaw ยท 70+ more |
All 11 skills (9 area guides + 2 multi-step workflow skills) and the
shipeasy MCP server port to every agent โ the flows trigger from
natural-language phrasing everywhere, and Claude Code additionally exposes each
skill as a /shipeasy:<skill-name> command. Skills and MCP are referenced,
never copied.
Learn more
- ๐ Skill reference โ every skill, its auto-triggers, MCP tool and CLI mapping, plus the headline workflows.
- ๐งฉ
INSTALL.mdโ full per-agent install reference (70+ hosts). - โฐ Trigger install guide โ
shipeasy ops trigger create <provider> --help(also at https://docs.shipeasy.ai/get-started/triggers) โ set up unattended scheduled triggers that burn down your ops inbox and open one PR per item. - ๐ shipeasy.ai ยท docs.shipeasy.ai
Install
Add shipeasy to your client. Pick the one you use.
claude mcp add mcp -- npx -y @shipeasy/mcpcodex mcp add mcp -- npx -y @shipeasy/mcpamp mcp add mcp -- npx -y @shipeasy/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@shipeasy/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@shipeasy/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@shipeasy/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@shipeasy/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@shipeasy/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@shipeasy/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@shipeasy/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@shipeasy/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @shipeasy/mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust9/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 17 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 2.8.0Latest | Jul 27, 2026 |
| 2.7.0 | Jul 27, 2026 |
| 2.6.0 | Jul 26, 2026 |
| 2.5.0 | Jul 26, 2026 |
| 2.4.0 | Jul 11, 2026 |
| 2.3.0 | Jul 5, 2026 |
| 2.2.0 | Jul 4, 2026 |
| 2.0.0 | Jun 27, 2026 |
| 1.6.0 | Jun 25, 2026 |
| 1.5.0 | Jun 24, 2026 |
| 1.4.0 | Jun 20, 2026 |
| 1.3.2 | Jun 14, 2026 |
| 1.3.1 | Jun 14, 2026 |