Skip to main content
ClaudeWave
MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
Install in Claude Code / Claude Desktop
Method: NPX · degit
Claude Code CLI
claude mcp add ship-mcp -- npx -y degit
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "ship-mcp": {
      "command": "npx",
      "args": ["-y", "degit"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# ship-mcp

**The clean TypeScript starter for building MCP servers.** Zod-validated tools, unit tests, MCP Inspector wired up, one-command dev loop. Clone it, rename two strings, ship your server.

```bash
npx degit YOURORG/ship-mcp my-server && cd my-server && npm i && npm run dev
```

## Why this exists

Every MCP server starts with the same 90 minutes of setup: SDK wiring, stdio transport, schema validation, figuring out why `console.log` breaks the protocol (logs go to stderr — already handled here), and getting the Inspector attached. This repo is that 90 minutes, done properly, once.

## What's inside

- **`src/index.ts`** — server wiring: register tools, connect stdio transport. ~40 lines, no magic.
- **`src/tools.ts`** — tool logic decoupled from wiring so it's unit-testable. Two examples: `echo` (hello-world) and `fetch_json` (real async tool with error handling).
- **`src/tools.test.ts`** — Vitest tests that run without spawning the server.
- **`npm run inspect`** — opens the official MCP Inspector against your dev server.

## Quickstart

```bash
npm install
npm run dev        # run the server (stdio)
npm test           # unit tests
npm run inspect    # poke tools in the MCP Inspector UI
npm run build      # compile to dist/
```

### Use it from Claude Desktop / Claude Code

```json
{
  "mcpServers": {
    "my-server": {
      "command": "node",
      "args": ["/absolute/path/to/dist/index.js"]
    }
  }
}
```

## Add your own tool (30 seconds)

```ts
// src/tools.ts
export const greetInput = { name: z.string() };
export async function greet({ name }: { name: string }) {
  return { content: [{ type: "text" as const, text: `Hello, ${name}!` }] };
}

// src/index.ts
server.registerTool("greet", { description: "Greet someone", inputSchema: greetInput }, greet);
```

---

## Want to ship a *paid* MCP server?

Fewer than 5% of the 11,000+ MCP servers out there make money — not because the demand isn't there, but because the billing plumbing is genuinely annoying. **[Ship MCP Pro](https://payhip.com/b/FWSlg)** is this starter plus everything the free version deliberately leaves out:

- 🔑 **License-key gating** — Payhip & Gumroad license verification middleware; sell keys, server validates them
- 📊 **Usage metering + per-key rate limits** — free tier / paid tier out of the box
- 🌐 **Streamable HTTP transport** — deploy as a remote server (Docker + Railway/Fly guides included)
- ✅ **CI pipeline**, expanded test suite, production error handling
- 📣 **Launch kit** — the exact directory-submission checklist + listing templates that get servers 10x more installs

*One-time $49, MIT-licensed output, free updates.* → **[Get Ship MCP Pro](https://payhip.com/b/FWSlg)**

---

MIT © Argo Navis
boilerplatemcpmcp-servermodel-context-protocoltypescript

What people ask about ship-MCP

What is colossal1598/ship-MCP?

+

colossal1598/ship-MCP is mcp servers for the Claude AI ecosystem with 0 GitHub stars.

How do I install ship-MCP?

+

You can install ship-MCP by cloning the repository (https://github.com/colossal1598/ship-MCP) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is colossal1598/ship-MCP safe to use?

+

colossal1598/ship-MCP has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains colossal1598/ship-MCP?

+

colossal1598/ship-MCP is maintained by colossal1598. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to ship-MCP?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy ship-MCP to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: colossal1598/ship-MCP
[![Featured on ClaudeWave](https://claudewave.com/api/badge/colossal1598-ship-mcp)](https://claudewave.com/repo/colossal1598-ship-mcp)
<a href="https://claudewave.com/repo/colossal1598-ship-mcp"><img src="https://claudewave.com/api/badge/colossal1598-ship-mcp" alt="Featured on ClaudeWave: colossal1598/ship-MCP" width="320" height="64" /></a>

More MCP Servers

ship-MCP alternatives