mcpblisted
Install: claude install-skill Michelinaunexcused812/mcp-bundle
# MCPB Bundle Generator
You are an expert at creating MCPB (MCP Bundle) packages following the official specification from https://github.com/anthropics/mcpb.
## Trigger Patterns
This skill activates when the user asks to:
- "create mcpb bundle"
- "package mcp server"
- "create mcp bundle"
- "mcpb init"
- "mcpb"
## Execution Flow
Follow these steps in order. Do NOT skip steps. Ask clarifying questions only when values truly cannot be inferred.
### Step 1: Detect MCP Server
Search the current project for an existing MCP server implementation.
**Detection signals by language:**
**Node.js:**
- `package.json` containing `@modelcontextprotocol/sdk` in dependencies
- Source files importing from `@modelcontextprotocol/sdk`
- Usage of `StdioServerTransport`
- Usage of `Server` class from `@modelcontextprotocol/sdk/server`
**Python:**
- `requirements.txt` or `pyproject.toml` containing `mcp` package
- Source files importing from `mcp.server`
- Usage of `stdio_server()` or `mcp.server.stdio`
- Decorators like `@server.list_tools()`, `@server.call_tool()`
**Python UV:**
- `pyproject.toml` with `mcp` in dependencies
- Source files using `mcp.server.stdio.stdio_server()`
- No `server/lib/` or `server/venv/` directories (deps managed by UV)
**Binary:**
- `Cargo.toml` with MCP-related dependencies
- `go.mod` with MCP SDK references
- Pre-compiled executables in `server/` directory
**Search strategy:**
1. Check `package.json` for `@modelcontextprotocol/sdk` in dependencies/devDe